| 1 | <?php |
||
| 11 | class RepositoryServiceProvider extends ServiceProvider |
||
| 12 | { |
||
| 13 | use ConsoleTools; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * The repository alias pattern. |
||
| 17 | * |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | protected $repositoryAliasPattern = '{{class}}Contract'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function register() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function boot() |
||
| 45 | } |
||
| 46 |