| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | private function publishFiles() |
||
| 46 | { |
||
| 47 | $publishTag = $this->_packageTag; |
||
| 48 | |||
| 49 | // Publish Mailer |
||
| 50 | $this->publishes([ |
||
| 51 | __DIR__.'/App/Mail/ExceptionOccured.php' => app_path('Mail/ExceptionOccured.php'), |
||
| 52 | ], $publishTag); |
||
| 53 | |||
| 54 | // Publish email view |
||
| 55 | $this->publishes([ |
||
| 56 | __DIR__.'/resources/views/emails/exception.blade.php' => resource_path('views/emails/exception.blade.php'), |
||
| 57 | ], $publishTag); |
||
| 58 | |||
| 59 | // Publish config file |
||
| 60 | $this->publishes([ |
||
| 61 | __DIR__.'/config/exceptions.php' => config_path('exceptions.php'), |
||
| 62 | ], $publishTag); |
||
| 63 | } |
||
| 65 |