controllers
1 month ago
class.stub
1 month ago
migration.stub
1 month ago
model.stub
1 month ago
provider.stub
1 month ago
request.stub
1 month ago
seeder.stub
1 month ago
provider.stub
29 lines
| 1 | <?php |
| 2 | |
| 3 | namespace {{namespace}}; |
| 4 | |
| 5 | use Framework\ServiceProvider; |
| 6 | |
| 7 | class {{class_name}} extends ServiceProvider |
| 8 | { |
| 9 | /** |
| 10 | * Register the services to the application. |
| 11 | * |
| 12 | * @return void |
| 13 | */ |
| 14 | public function register() |
| 15 | { |
| 16 | // Register your services here |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * Boot the services. |
| 21 | * |
| 22 | * @return void |
| 23 | */ |
| 24 | public function boot() |
| 25 | { |
| 26 | // Boot your services here (optional) |
| 27 | } |
| 28 | } |
| 29 |