Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function handle() |
||
38 | { |
||
39 | // Run yarn install, |
||
40 | // Run vendor publish commands |
||
41 | // Add the JigMiddleware to the Kernel |
||
42 | // Publish Sanctum config |
||
43 | // Add sanctum API middleware |
||
44 | // Publish permissions and Roles, |
||
45 | // Run Role Generator |
||
46 | // Run Permission generator |
||
47 | // Run user generator. |
||
48 | return 0; |
||
49 | } |
||
50 | } |
||
51 |
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.