Completed
Push — master ( 076ecd...1e6ec2 )
by Ariel
13:10
created
src/Traits/Preferenceable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
migrations/2016_07_09_000001_add_humanresource_calendar_link.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::table('humanresources', function (Blueprint $table) {
15
+        Schema::table('humanresources', function(Blueprint $table) {
16 16
             $table->string('calendar_link')->nullable();
17 17
         });
18 18
     }
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function down()
26 26
     {
27
-        Schema::table('humanresources', function (Blueprint $table) {
27
+        Schema::table('humanresources', function(Blueprint $table) {
28 28
             $table->dropColumn('calendar_link');
29 29
         });
30 30
     }
Please login to merge, or discard this patch.