Completed
Push — master ( 274f99...dca8df )
by Yaro
01:38
created
src/Jarboe/Table/Fields/File.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     {
58 58
         $template = $this->isReadonly() ? 'readonly' : 'edit';
59 59
 
60
-        return view('jarboe::crud.fields.file.'. $template, [
60
+        return view('jarboe::crud.fields.file.'.$template, [
61 61
             'model' => $model,
62 62
             'field' => $this,
63 63
         ])->render();
Please login to merge, or discard this patch.
src/Jarboe/Table/Fields/Number.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     {
42 42
         $template = $this->isReadonly() ? 'readonly' : 'edit';
43 43
 
44
-        return view('jarboe::crud.fields.number.'. $template, [
44
+        return view('jarboe::crud.fields.number.'.$template, [
45 45
             'model' => $model,
46 46
             'field' => $this,
47 47
         ])->render();
Please login to merge, or discard this patch.
src/Jarboe/Table/Fields/Time.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.time.'. $template, [
68
+        return view('jarboe::crud.fields.time.'.$template, [
69 69
             'model' => $model,
70 70
             'field' => $this,
71 71
         ])->render();
Please login to merge, or discard this patch.
src/Jarboe/Table/Fields/Markup/DummyField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     {
33 33
         $template = $this->isReadonly() ? 'readonly' : 'edit';
34 34
 
35
-        return view('jarboe::crud.fields.markup.dummy.'. $template, [
35
+        return view('jarboe::crud.fields.markup.dummy.'.$template, [
36 36
             'model' => $model,
37 37
             'field' => $this,
38 38
         ])->render();
Please login to merge, or discard this patch.
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.