@@ -45,7 +45,7 @@ public function newPackage(): Package
45
45
return new Package ();
46
46
}
47
47
48
- public function registerConfigs (): void
48
+ public function registerConfigs ()
49
49
{
50
50
if (empty ($ this ->package ->configFileNames )) {
51
51
return ;
@@ -117,7 +117,7 @@ protected function bootAssets(): void
117
117
$ this ->publishes ([$ vendorAssets => $ appAssets ], "{$ this ->package ->shortName ()}-assets " );
118
118
}
119
119
120
- protected function bootCommands (): void
120
+ protected function bootCommands ()
121
121
{
122
122
if (empty ($ this ->package ->commands )) {
123
123
return ;
@@ -126,7 +126,7 @@ protected function bootCommands(): void
126
126
$ this ->commands ($ this ->package ->commands );
127
127
}
128
128
129
- protected function bootConsoleCommands (): void
129
+ protected function bootConsoleCommands ()
130
130
{
131
131
if (empty ($ this ->package ->consoleCommands ) || ! $ this ->app ->runningInConsole ()) {
132
132
return ;
@@ -135,7 +135,7 @@ protected function bootConsoleCommands(): void
135
135
$ this ->commands ($ this ->package ->consoleCommands );
136
136
}
137
137
138
- protected function bootConfigs (): void
138
+ protected function bootConfigs ()
139
139
{
140
140
if ($ this ->app ->runningInConsole ()) {
141
141
foreach ($ this ->package ->configFileNames as $ configFileName ) {
@@ -147,7 +147,7 @@ protected function bootConfigs(): void
147
147
}
148
148
}
149
149
150
- protected function bootInertia (): void
150
+ protected function bootInertia ()
151
151
{
152
152
if (! $ this ->package ->hasInertiaComponents ) {
153
153
return ;
@@ -166,7 +166,7 @@ protected function bootInertia(): void
166
166
}
167
167
}
168
168
169
- protected function bootMigrations (): void
169
+ protected function bootMigrations ()
170
170
{
171
171
if ($ this ->package ->discoversMigrations ) {
172
172
$ this ->discoverMigrations ();
@@ -198,7 +198,7 @@ protected function bootMigrations(): void
198
198
}
199
199
}
200
200
201
- protected function bootProviders (): void
201
+ protected function bootProviders ()
202
202
{
203
203
if (! $ this ->package ->publishableProviderName || ! $ this ->app ->runningInConsole ()) {
204
204
return ;
@@ -211,7 +211,7 @@ protected function bootProviders(): void
211
211
$ this ->publishes ([$ vendorProvider => $ appProvider ], "{$ this ->package ->shortName ()}-provider " );
212
212
}
213
213
214
- protected function bootRoutes (): void
214
+ protected function bootRoutes ()
215
215
{
216
216
if (empty ($ this ->package ->routeFileNames )) {
217
217
return ;
@@ -222,7 +222,7 @@ protected function bootRoutes(): void
222
222
}
223
223
}
224
224
225
- protected function bootTranslations (): void
225
+ protected function bootTranslations ()
226
226
{
227
227
if (! $ this ->package ->hasTranslations ) {
228
228
return ;
@@ -246,7 +246,7 @@ protected function bootTranslations(): void
246
246
}
247
247
}
248
248
249
- protected function bootViews (): void
249
+ protected function bootViews ()
250
250
{
251
251
if (! $ this ->package ->hasViews ) {
252
252
return ;
@@ -263,7 +263,7 @@ protected function bootViews(): void
263
263
}
264
264
}
265
265
266
- protected function bootViewComponents (): void
266
+ protected function bootViewComponents ()
267
267
{
268
268
if (empty ($ this ->package ->viewComponents )) {
269
269
return ;
@@ -281,7 +281,7 @@ protected function bootViewComponents(): void
281
281
}
282
282
}
283
283
284
- protected function bootViewComposers (): void
284
+ protected function bootViewComposers ()
285
285
{
286
286
if (empty ($ this ->package ->viewComposers )) {
287
287
return ;
@@ -292,7 +292,7 @@ protected function bootViewComposers(): void
292
292
}
293
293
}
294
294
295
- protected function bootViewSharedData (): void
295
+ protected function bootViewSharedData ()
296
296
{
297
297
if (empty ($ this ->package ->sharedViewData )) {
298
298
return ;
@@ -303,7 +303,7 @@ protected function bootViewSharedData(): void
303
303
}
304
304
}
305
305
306
- protected function discoverMigrations (): void
306
+ protected function discoverMigrations ()
307
307
{
308
308
$ now = Carbon::now ();
309
309
$ migrationsPath = trim ($ this ->package ->migrationsPath , '/ ' );
0 commit comments