@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | class LERNServiceProvider extends ServiceProvider |
8 | 8 | { |
9 | 9 | public function register() { |
10 | - $this->mergeConfigFrom(__DIR__ . '/../config/lern.php', 'lern'); |
|
10 | + $this->mergeConfigFrom(__DIR__.'/../config/lern.php', 'lern'); |
|
11 | 11 | |
12 | 12 | $this->handleDeprecatedConfigValues(); |
13 | 13 | |
@@ -19,9 +19,9 @@ discard block |
||
19 | 19 | public function boot() |
20 | 20 | { |
21 | 21 | $this->publishes([ |
22 | - __DIR__ . '/../migrations/2016_03_17_000000_create_lern_tables.php' => base_path('database/migrations/2016_03_17_000000_create_lern_tables.php'), |
|
23 | - __DIR__ . '/../migrations/2016_03_27_000000_add_user_data_and_url_to_lern_tables.php' => base_path('database/migrations/2016_03_27_000000_add_user_data_and_url_to_lern_tables.php'), |
|
24 | - __DIR__ . '/../config/lern.php' => base_path('config/lern.php'), |
|
22 | + __DIR__.'/../migrations/2016_03_17_000000_create_lern_tables.php' => base_path('database/migrations/2016_03_17_000000_create_lern_tables.php'), |
|
23 | + __DIR__.'/../migrations/2016_03_27_000000_add_user_data_and_url_to_lern_tables.php' => base_path('database/migrations/2016_03_27_000000_add_user_data_and_url_to_lern_tables.php'), |
|
24 | + __DIR__.'/../config/lern.php' => base_path('config/lern.php'), |
|
25 | 25 | ]); |
26 | 26 | } |
27 | 27 |
@@ -59,9 +59,9 @@ |
||
59 | 59 | if (is_callable($this->messageCb)) { |
60 | 60 | return $this->messageCb->__invoke($e); |
61 | 61 | } else { |
62 | - $msg = get_class($e) . " was thrown! \n" . $e->getMessage(); |
|
62 | + $msg = get_class($e)." was thrown! \n".$e->getMessage(); |
|
63 | 63 | if ($this->config['includeExceptionStackTrace'] === true) { |
64 | - $msg .= "\n\n" . $e->getTraceAsString(); |
|
64 | + $msg .= "\n\n".$e->getTraceAsString(); |
|
65 | 65 | } |
66 | 66 | return $msg; |
67 | 67 | } |