@@ -77,10 +77,10 @@ |
||
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | /** |
| 80 | - * Get the services provided by the provider. |
|
| 81 | - * |
|
| 82 | - * @return array |
|
| 83 | - */ |
|
| 80 | + * Get the services provided by the provider. |
|
| 81 | + * |
|
| 82 | + * @return array |
|
| 83 | + */ |
|
| 84 | 84 | public function provides() |
| 85 | 85 | { |
| 86 | 86 | return ['maknz.slack']; |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | public function boot() |
| 14 | 14 | { |
| 15 | - $this->publishes([__DIR__ . '/config/config.php' => config_path('slack.php')]); |
|
| 15 | + $this->publishes([__DIR__.'/config/config.php' => config_path('slack.php')]); |
|
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | /** |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | public function register() |
| 24 | 24 | { |
| 25 | - $this->mergeConfigFrom(__DIR__ . '/config/config.php', 'slack'); |
|
| 25 | + $this->mergeConfigFrom(__DIR__.'/config/config.php', 'slack'); |
|
| 26 | 26 | |
| 27 | 27 | $this->app['maknz.slack'] = $this->app->share(function($app) |
| 28 | 28 | { |
@@ -26,10 +26,10 @@ |
||
| 26 | 26 | protected $image_url; |
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | - * Optional thumbnail that should appear within the attachment |
|
| 30 | - * |
|
| 31 | - * @var string |
|
| 32 | - */ |
|
| 29 | + * Optional thumbnail that should appear within the attachment |
|
| 30 | + * |
|
| 31 | + * @var string |
|
| 32 | + */ |
|
| 33 | 33 | protected $thumb_url; |
| 34 | 34 | |
| 35 | 35 | /** |