2015-12-06 13:58:49 -05:00
|
|
|
<?php
|
2017-09-25 21:53:44 -05:00
|
|
|
|
2024-03-12 22:39:16 -04:00
|
|
|
namespace App\Providers;
|
2015-12-06 13:58:49 -05:00
|
|
|
|
2017-07-01 15:29:49 -05:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
|
|
class RepositoryServiceProvider extends ServiceProvider
|
2016-12-07 22:46:38 +00:00
|
|
|
{
|
2015-12-06 13:58:49 -05:00
|
|
|
/**
|
2023-02-23 12:30:16 -07:00
|
|
|
* Register all the repository bindings.
|
2015-12-06 13:58:49 -05:00
|
|
|
*/
|
2023-02-23 12:30:16 -07:00
|
|
|
public function register(): void
|
2017-07-01 15:29:49 -05:00
|
|
|
{
|
2017-08-08 23:24:55 -05:00
|
|
|
// Eloquent Repositories
|
2017-07-01 15:29:49 -05:00
|
|
|
}
|
2015-12-06 13:58:49 -05:00
|
|
|
}
|