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 | {{-- select_from_array column --}} |
2 | 2 | <span> |
3 | 3 | <?php |
4 | - if ($entry->{$column['name']} !== null) { |
|
5 | - echo $column['options'][$entry->{$column['name']}]; |
|
6 | - } else { |
|
7 | - echo "-"; |
|
8 | - } |
|
9 | - ?> |
|
4 | + if ($entry->{$column['name']} !== null) { |
|
5 | + echo $column['options'][$entry->{$column['name']}]; |
|
6 | + } else { |
|
7 | + echo "-"; |
|
8 | + } |
|
9 | + ?> |
|
10 | 10 | </span> |
@@ -116,9 +116,9 @@ |
||
116 | 116 | // add the details_row button to the first column |
117 | 117 | if ($this->details_row) { |
118 | 118 | $details_row_button = \View::make('crud::columns.details_row_button') |
119 | - ->with('crud', $this) |
|
120 | - ->with('entry', $entry) |
|
121 | - ->render(); |
|
119 | + ->with('crud', $this) |
|
120 | + ->with('entry', $entry) |
|
121 | + ->render(); |
|
122 | 122 | $row_items[0] = $details_row_button.$row_items[0]; |
123 | 123 | } |
124 | 124 |