Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Pull Request — master (#103)
by Nathaniel
03:30
created
src/resources/views/fields/date.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 <?php
5 5
     // if the column has been cast to Carbon or Date (using attribute casting)
6 6
     // get the value as a date string
7
-    if (isset($field['value']) && ( $field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date ))
7
+    if (isset($field['value']) && ($field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date))
8 8
     {
9 9
         $field['value'] = $field['value']->toDateString();
10 10
     }
Please login to merge, or discard this patch.
src/resources/views/fields/datetime.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 <?php
5 5
     // if the column has been cast to Carbon or Date (using attribute casting)
6 6
     // get the value as a date string
7
-    if (isset($field['value']) && ( $field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date ))
7
+    if (isset($field['value']) && ($field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date))
8 8
     {
9 9
         $field['value'] = $field['value']->toDateString();
10 10
     }
Please login to merge, or discard this patch.
src/PanelTraits/Read.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
      */
158 158
     public function getCellView($column, $entry)
159 159
     {
160
-        if (! isset($column['type'])) {
160
+        if (!isset($column['type'])) {
161 161
             return \View::make('crud::columns.text')->with('crud', $this)->with('column', $column)->with('entry', $entry)->render();
162 162
         } else {
163 163
             if (view()->exists('vendor.backpack.crud.columns.'.$column['type'])) {
Please login to merge, or discard this patch.
src/resources/views/reorder.blade.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -20,42 +20,42 @@  discard block
 block discarded – undo
20 20
 
21 21
 @section('content')
22 22
 <?php
23
-  function tree_element($entry, $key, $all_entries, $crud)
24
-  {
23
+    function tree_element($entry, $key, $all_entries, $crud)
24
+    {
25 25
     if (!isset($entry->tree_element_shown)) {
26
-      // mark the element as shown
27
-      $all_entries[$key]->tree_element_shown = true;
28
-      $entry->tree_element_shown = true;
26
+        // mark the element as shown
27
+        $all_entries[$key]->tree_element_shown = true;
28
+        $entry->tree_element_shown = true;
29 29
 
30
-      // show the tree element
31
-      echo '<li id="list_'.$entry->getKey().'">';
32
-      echo '<div><span class="disclose"><span></span></span>'.$entry->{$crud->reorder_label}.'</div>';
30
+        // show the tree element
31
+        echo '<li id="list_'.$entry->getKey().'">';
32
+        echo '<div><span class="disclose"><span></span></span>'.$entry->{$crud->reorder_label}.'</div>';
33 33
 
34
-      // see if this element has any children
35
-      $children = [];
36
-      foreach ($all_entries as $key => $subentry) {
34
+        // see if this element has any children
35
+        $children = [];
36
+        foreach ($all_entries as $key => $subentry) {
37 37
         if ($subentry->parent_id == $entry->getKey()) {
38
-          $children[] = $subentry;
38
+            $children[] = $subentry;
39
+        }
39 40
         }
40
-      }
41 41
 
42
-      $children = collect($children)->sortBy('lft');
42
+        $children = collect($children)->sortBy('lft');
43 43
 
44
-      // if it does have children, show them
45
-      if (count($children)) {
44
+        // if it does have children, show them
45
+        if (count($children)) {
46 46
         echo '<ol>';
47 47
         foreach ($children as $key => $child) {
48
-          $children[$key] = tree_element($child, $child->getKey(), $all_entries, $crud);
48
+            $children[$key] = tree_element($child, $child->getKey(), $all_entries, $crud);
49 49
         }
50 50
         echo '</ol>';
51
-      }
52
-      echo '</li>';
51
+        }
52
+        echo '</li>';
53 53
     }
54 54
 
55 55
     return $entry;
56
-  }
56
+    }
57 57
 
58
- ?>
58
+    ?>
59 59
 <div class="row">
60 60
   <div class="col-md-8 col-md-offset-2">
61 61
     @if ($crud->hasAccess('list'))
@@ -73,15 +73,15 @@  discard block
 block discarded – undo
73 73
 
74 74
           <ol class="sortable">
75 75
             <?php
76
-              $all_entries = collect($entries->all())->sortBy('lft')->keyBy($crud->getModel()->getKeyName());
77
-              $root_entries = $all_entries->filter(function($item) {
76
+                $all_entries = collect($entries->all())->sortBy('lft')->keyBy($crud->getModel()->getKeyName());
77
+                $root_entries = $all_entries->filter(function($item) {
78 78
                 return $item->parent_id == 0;
79
-              });
80
-             ?>
79
+                });
80
+                ?>
81 81
             @foreach ($root_entries as $key => $entry)
82 82
               <?php
83 83
                 $root_entries[$key] = tree_element($entry, $key, $all_entries, $crud);
84
-              ?>
84
+                ?>
85 85
             @endforeach
86 86
           </ol>
87 87
 
Please login to merge, or discard this patch.
src/CrudPanel.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      */
71 71
     public function setModel($model_namespace)
72 72
     {
73
-        if (! class_exists($model_namespace)) {
73
+        if (!class_exists($model_namespace)) {
74 74
             throw new \Exception('This model does not exist.', 404);
75 75
         }
76 76
 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     {
113 113
         $complete_route = $route.'.index';
114 114
 
115
-        if (! \Route::has($complete_route)) {
115
+        if (!\Route::has($complete_route)) {
116 116
             throw new \Exception('There are no routes for this route name.', 404);
117 117
         }
118 118
 
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      */
163 163
     public function getFirstOfItsTypeInArray($type, $array)
164 164
     {
165
-        return array_first($array, function ($item) use ($type) {
165
+        return array_first($array, function($item) use ($type) {
166 166
             return $item['type'] == $type;
167 167
         });
168 168
     }
@@ -179,8 +179,8 @@  discard block
 block discarded – undo
179 179
 
180 180
     public function sync($type, $fields, $attributes)
181 181
     {
182
-        if (! empty($this->{$type})) {
183
-            $this->{$type} = array_map(function ($field) use ($fields, $attributes) {
182
+        if (!empty($this->{$type})) {
183
+            $this->{$type} = array_map(function($field) use ($fields, $attributes) {
184 184
                 if (in_array($field['name'], (array) $fields)) {
185 185
                     $field = array_merge($field, $attributes);
186 186
                 }
@@ -206,8 +206,8 @@  discard block
 block discarded – undo
206 206
                 }
207 207
             }
208 208
 
209
-            return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function ($item) use ($items) {
210
-                return ! in_array($item['name'], $this->sort[$items]);
209
+            return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function($item) use ($items) {
210
+                return !in_array($item['name'], $this->sort[$items]);
211 211
             }));
212 212
         }
213 213
 
Please login to merge, or discard this patch.