for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Containers\Authorization\Data\Repositories;
use App\Port\Repository\Abstracts\Repository;
/**
* Class PermissionRepository.
*
* @author Mahmoud Zalt <[email protected]>
*/
class PermissionRepository extends Repository
{
* the container name. Must be set when the model has different name than the container
* @var string
protected $container = 'Authorization';
* @var array
protected $fieldSearchable = [
];
}