Merge branch 'develop' into feature/server-transfers-actually

This commit is contained in:
Matthew Penner
2020-04-04 16:28:02 -06:00
committed by GitHub
49 changed files with 1000 additions and 37 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace Pterodactyl\Repositories\Eloquent;
use Pterodactyl\Models\Backup;
class BackupRepository extends EloquentRepository
{
/**
* @return string
*/
public function model()
{
return Backup::class;
}
}