1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-20 06:00:08 -07:00

Fix missing return

This commit is contained in:
Unknown 2017-06-08 14:24:08 +02:00
parent 32c8f8e03b
commit 7d130d1666

View File

@ -60,7 +60,7 @@ class ModelService
*/
public function getSiblings(Model $model)
{
$this->modelRepository->findAllRelatedModels($model);
return $this->modelRepository->findAllRelatedModels($model);
}
/**