| Total Complexity | 5 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 14 | class AsanaServiceProvider extends ServiceProvider implements DeferrableProvider { |
||
| 15 | |||
| 16 | const NAME = 'asana'; |
||
| 17 | |||
| 18 | public function boot () { |
||
| 19 | $this->publishes([__DIR__ . '/config/asana.php' => App::configPath('asana.php')]); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function provides () { |
||
| 24 | } |
||
| 25 | |||
| 26 | public function register () { |
||
| 45 | }); |
||
| 46 | } |
||
| 47 | } |