Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
42 | protected function publishConfigurationFile() |
||
43 | { |
||
44 | // Determine the Local Configuration Path |
||
45 | $source = $this->getLocalConfigurationPath(); |
||
46 | |||
47 | // Determine the Application Configuration Path |
||
48 | $destination = $this->getApplicationConfigPath(); |
||
49 | |||
50 | // Publish the Configuration File |
||
51 | $this->publishes([$source => $destination], 'config'); |
||
52 | } |
||
86 |