Completed
Push — master ( 025f1d...274f99 )
by Yaro
01:33
created
src/Jarboe/Table/Fields/ColorPicker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
     public function value(Request $request)
20 20
     {
21
-        return (string) parent::value($request);
21
+        return (string)parent::value($request);
22 22
     }
23 23
 
24 24
     public function type($type)
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $template = $this->isReadonly() ? 'readonly' : 'edit';
56 56
 
57
-        return view('jarboe::crud.fields.color-picker.'. $template, [
57
+        return view('jarboe::crud.fields.color-picker.'.$template, [
58 58
             'model' => $model,
59 59
             'field' => $this,
60 60
         ])->render();
Please login to merge, or discard this patch.
src/Jarboe/Table/Fields/Wysiwyg.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $value = parent::value($request);
24 24
 
25
-        return is_array($value) ? $value : (string) $value;
25
+        return is_array($value) ? $value : (string)$value;
26 26
     }
27 27
 
28 28
     public function type($type = null)
Please login to merge, or discard this patch.
src/Jarboe/Table/Fields/Datetime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     {
51 51
         $template = $this->isReadonly() ? 'readonly' : 'edit';
52 52
 
53
-        return view('jarboe::crud.fields.datetime.'. $template, [
53
+        return view('jarboe::crud.fields.datetime.'.$template, [
54 54
             'model' => $model,
55 55
             'field' => $this,
56 56
         ])->render();
Please login to merge, or discard this patch.
src/Jarboe/Table/Fields/Tags.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         $template = $this->isReadonly() ? 'readonly' : 'edit';
25 25
 
26
-        return view('jarboe::crud.fields.tags.'. $template, [
26
+        return view('jarboe::crud.fields.tags.'.$template, [
27 27
             'model' => $model,
28 28
             'field' => $this,
29 29
         ])->render();
Please login to merge, or discard this patch.
src/Jarboe/Table/Fields/Password.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     {
65 65
         $template = $this->isReadonly() ? 'readonly' : 'edit';
66 66
 
67
-        return view('jarboe::crud.fields.password.'. $template, [
67
+        return view('jarboe::crud.fields.password.'.$template, [
68 68
             'model' => $model,
69 69
             'field' => $this,
70 70
         ])->render();
Please login to merge, or discard this patch.
src/Jarboe/Table/Fields/Textarea.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             return null;
69 69
         }
70 70
 
71
-        return is_array($value) ? $value : (string) $value;
71
+        return is_array($value) ? $value : (string)$value;
72 72
     }
73 73
 
74 74
     public function getListValue($model)
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
             $template .= '_translatable';
79 79
         }
80 80
 
81
-        return view('jarboe::crud.fields.textarea.'. $template, [
81
+        return view('jarboe::crud.fields.textarea.'.$template, [
82 82
             'model' => $model,
83 83
             'field' => $this,
84 84
         ])->render();
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     {
89 89
         $template = $this->isReadonly() ? 'readonly' : 'edit';
90 90
 
91
-        return view('jarboe::crud.fields.textarea.'. $template, [
91
+        return view('jarboe::crud.fields.textarea.'.$template, [
92 92
             'model' => $model,
93 93
             'field' => $this,
94 94
         ])->render();
Please login to merge, or discard this patch.
src/Jarboe/Table/Fields/Checkbox.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
             return null;
20 20
         }
21 21
 
22
-        return (bool) $value;
22
+        return (bool)$value;
23 23
     }
24 24
 
25 25
     public function getListValue($model)
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     {
35 35
         $template = $this->isReadonly() ? 'readonly' : 'edit';
36 36
 
37
-        return view('jarboe::crud.fields.checkbox.'. $template, [
37
+        return view('jarboe::crud.fields.checkbox.'.$template, [
38 38
             'model' => $model,
39 39
             'field' => $this,
40 40
         ])->render();
Please login to merge, or discard this patch.
src/Jarboe/Table/Fields/AbstractField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     {
167 167
         $name = $this->name();
168 168
         if ($locale) {
169
-            $name .= '.'. $locale;
169
+            $name .= '.'.$locale;
170 170
         }
171 171
 
172 172
         if ($this->hasOld($name)) {
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
     {
181 181
         $name = $this->name();
182 182
         if ($locale) {
183
-            $name .= '.'. $locale;
183
+            $name .= '.'.$locale;
184 184
         }
185 185
 
186 186
         if ($this->hasOld($name)) {
Please login to merge, or discard this patch.
src/Jarboe/Table/Fields/Date.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     {
66 66
         $template = $this->isReadonly() ? 'readonly' : 'edit';
67 67
 
68
-        return view('jarboe::crud.fields.date.'. $template, [
68
+        return view('jarboe::crud.fields.date.'.$template, [
69 69
             'model' => $model,
70 70
             'field' => $this,
71 71
         ])->render();
Please login to merge, or discard this patch.