for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace App\Modules\Permissions\Services;
use App\Modules\Core\BaseClasses\BaseService;
use App\Modules\Permissions\Repositories\PermissionRepository;
class PermissionService extends BaseService
{
/**
* Init new object.
*
* @param PermissionRepository $repo
* @return void
@return
Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.
Please refer to the PHP core documentation on constructors.
*/
public function __construct(PermissionRepository $repo)
parent::__construct($repo);
}
Adding a
@returnannotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.