@@ -36,7 +36,7 @@ |
||
| 36 | 36 | return $value; |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - if($value = Cache::get("{$this->slug}.'/'.{$key}")) |
|
| 39 | + if ($value = Cache::get("{$this->slug}.'/'.{$key}")) |
|
| 40 | 40 | { |
| 41 | 41 | return $value; |
| 42 | 42 | } |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | public function up() |
| 13 | 13 | { |
| 14 | - Schema::table('humanresources', function ($table) { |
|
| 14 | + Schema::table('humanresources', function($table) { |
|
| 15 | 15 | $table->string('calendar_link')->nullable(); |
| 16 | 16 | }); |
| 17 | 17 | } |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | */ |
| 24 | 24 | public function down() |
| 25 | 25 | { |
| 26 | - Schema::table('humanresources', function ($table) { |
|
| 26 | + Schema::table('humanresources', function($table) { |
|
| 27 | 27 | $table->dropColumn('calendar_link'); |
| 28 | 28 | }); |
| 29 | 29 | } |