We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -1,10 +1,10 @@ |
||
1 | 1 | {{-- checkbox with loose false/null/0 checking --}} |
2 | 2 | <?php |
3 | - $icon = "fa-check-square-o"; |
|
4 | - if (strip_tags($entry->{$column['name']}) == false) |
|
5 | - { |
|
6 | - $icon = "fa-square-o"; |
|
7 | - } |
|
3 | + $icon = "fa-check-square-o"; |
|
4 | + if (strip_tags($entry->{$column['name']}) == false) |
|
5 | + { |
|
6 | + $icon = "fa-square-o"; |
|
7 | + } |
|
8 | 8 | ?> |
9 | 9 | |
10 | 10 | <td> |
@@ -1,6 +1,6 @@ |
||
1 | 1 | {{-- custom return value via attribute --}} |
2 | 2 | <td> |
3 | 3 | <?php |
4 | - echo $entry->{$column['function_name']}()->{$column['attribute']}; |
|
4 | + echo $entry->{$column['function_name']}()->{$column['attribute']}; |
|
5 | 5 | ?> |
6 | 6 | </td> |
7 | 7 | \ No newline at end of file |
@@ -1,8 +1,8 @@ |
||
1 | 1 | {{-- single relationships (1-1, 1-n) --}} |
2 | 2 | <td> |
3 | 3 | <?php |
4 | - if ($entry->{$column['entity']}()->getResults()) { |
|
5 | - echo $entry->{$column['entity']}()->getResults()->{$column['attribute']}; |
|
6 | - } |
|
7 | - ?> |
|
4 | + if ($entry->{$column['entity']}()->getResults()) { |
|
5 | + echo $entry->{$column['entity']}()->getResults()->{$column['attribute']}; |
|
6 | + } |
|
7 | + ?> |
|
8 | 8 | </td> |
9 | 9 | \ No newline at end of file |
@@ -1,6 +1,6 @@ |
||
1 | 1 | {{-- custom return value --}} |
2 | 2 | <td> |
3 | 3 | <?php |
4 | - echo $entry->{$column['function_name']}(); |
|
4 | + echo $entry->{$column['function_name']}(); |
|
5 | 5 | ?> |
6 | 6 | </td> |
7 | 7 | \ No newline at end of file |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | { |
17 | 17 | $this->getDbColumnTypes(); |
18 | 18 | |
19 | - array_map(function ($field) { |
|
19 | + array_map(function($field) { |
|
20 | 20 | // $this->labels[$field] = $this->makeLabel($field); |
21 | 21 | |
22 | 22 | $new_field = [ |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | $this->create_fields[$field] = $new_field; |
31 | 31 | $this->update_fields[$field] = $new_field; |
32 | 32 | |
33 | - if (! in_array($field, $this->model->getHidden())) { |
|
33 | + if (!in_array($field, $this->model->getHidden())) { |
|
34 | 34 | $this->columns[$field] = [ |
35 | 35 | 'name' => $field, |
36 | 36 | 'label' => ucfirst($field), |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | */ |
64 | 64 | public function getFieldTypeFromDbColumnType($field) |
65 | 65 | { |
66 | - if (! array_key_exists($field, $this->db_column_types)) { |
|
66 | + if (!array_key_exists($field, $this->db_column_types)) { |
|
67 | 67 | return 'text'; |
68 | 68 | } |
69 | 69 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | $columns = \Schema::getColumnListing($this->model->getTable()); |
145 | 145 | $fillable = $this->model->getFillable(); |
146 | 146 | |
147 | - if (! empty($fillable)) { |
|
147 | + if (!empty($fillable)) { |
|
148 | 148 | $columns = array_intersect($columns, $fillable); |
149 | 149 | } |
150 | 150 |
@@ -4,7 +4,7 @@ |
||
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 | } |
@@ -95,6 +95,12 @@ |
||
95 | 95 | public $type = 'view'; |
96 | 96 | public $content; |
97 | 97 | |
98 | + /** |
|
99 | + * @param string $stack |
|
100 | + * @param string $name |
|
101 | + * @param string $type |
|
102 | + * @param string $content |
|
103 | + */ |
|
98 | 104 | public function __construct($stack, $name, $type, $content) |
99 | 105 | { |
100 | 106 | $this->stack = $stack; |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | |
78 | 78 | public function removeButton($name) |
79 | 79 | { |
80 | - $this->buttons = $this->buttons->reject(function ($button) use ($name) { |
|
80 | + $this->buttons = $this->buttons->reject(function($button) use ($name) { |
|
81 | 81 | return $button->name == $name; |
82 | 82 | }); |
83 | 83 | } |
@@ -89,14 +89,14 @@ discard block |
||
89 | 89 | |
90 | 90 | public function removeAllButtonsFromStack($stack) |
91 | 91 | { |
92 | - $this->buttons = $this->buttons->reject(function ($button) use ($stack) { |
|
92 | + $this->buttons = $this->buttons->reject(function($button) use ($stack) { |
|
93 | 93 | return $button->stack == $stack; |
94 | 94 | }); |
95 | 95 | } |
96 | 96 | |
97 | 97 | public function removeButtonFromStack($name, $stack) |
98 | 98 | { |
99 | - $this->buttons = $this->buttons->reject(function ($button) use ($name, $stack) { |
|
99 | + $this->buttons = $this->buttons->reject(function($button) use ($name, $stack) { |
|
100 | 100 | return $button->name == $name && $button->stack == $stack; |
101 | 101 | }); |
102 | 102 | } |
@@ -4,7 +4,7 @@ |
||
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 | } |
@@ -20,42 +20,42 @@ discard block |
||
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 |
||
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 |