Update last of existing services to use repositories, includes unit tests

Also update PHPDocs on all the repository interfaces and classes to be correct.
This commit is contained in:
Dane Everitt 2017-07-08 14:07:51 -05:00
parent 50588a1f54
commit 0deb022093
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
21 changed files with 808 additions and 207 deletions

View file

@ -37,9 +37,7 @@ class LocationRepository extends EloquentRepository implements LocationRepositor
protected $searchTerm;
/**
* Setup model.
*
* @return string
* {@inheritdoc}
*/
public function model()
{
@ -47,10 +45,7 @@ class LocationRepository extends EloquentRepository implements LocationRepositor
}
/**
* Setup the model for search abilities.
*
* @param $term
* @return $this
* {@inheritdoc}
*/
public function search($term)
{
@ -65,13 +60,7 @@ class LocationRepository extends EloquentRepository implements LocationRepositor
}
/**
* Delete a location only if there are no nodes attached to it.
*
* @param $id
* @return bool|mixed|null
*
* @throws \Pterodactyl\Exceptions\DisplayException
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
* {@inheritdoc}
*/
public function deleteIfNoNodes($id)
{