Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function boot() |
||
40 | { |
||
41 | $this->publishes( [ |
||
42 | __DIR__ . '/../resources/config/responder.php' => config_path( 'responder.php' ) |
||
43 | ], 'config' ); |
||
44 | |||
45 | $this->publishes( [ |
||
46 | __DIR__ . '/../resources/lang/en/errors.php' => resource_path( 'lang/en/errors.php' ) |
||
47 | ], 'lang' ); |
||
48 | |||
49 | $this->commands( [ |
||
50 | MakeTransformer::class |
||
51 | ] ); |
||
52 | } |
||
53 | |||
72 | } |