| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 62 | protected function registerAssetPublishing(): void |
||
| 63 | { |
||
| 64 | $configPath = __DIR__.'/../../config/blog-api.php'; |
||
| 65 | $this->publishes([ |
||
| 66 | $configPath => config_path('blog-api.php'), |
||
| 67 | ], 'config'); |
||
| 68 | |||
| 69 | $this->publishes([ |
||
| 70 | __DIR__.'/../../lang' => resource_path('lang/packages/blog-api'), |
||
| 71 | ], 'lang'); |
||
| 72 | } |
||
| 74 |