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> |
@@ -1,8 +1,8 @@ |
||
1 | 1 | {{-- single relationships (1-1, 1-n) --}} |
2 | 2 | <span> |
3 | 3 | <?php |
4 | - if ($entry->{$column['entity']}) { |
|
5 | - echo $entry->{$column['entity']}->{$column['attribute']}; |
|
6 | - } |
|
7 | - ?> |
|
4 | + if ($entry->{$column['entity']}) { |
|
5 | + echo $entry->{$column['entity']}->{$column['attribute']}; |
|
6 | + } |
|
7 | + ?> |
|
8 | 8 | </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 |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | */ |
77 | 77 | public function register() |
78 | 78 | { |
79 | - $this->app->bind('CRUD', function ($app) { |
|
79 | + $this->app->bind('CRUD', function($app) { |
|
80 | 80 | return new CRUD($app); |
81 | 81 | }); |
82 | 82 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | $this->commands($this->commands); |
92 | 92 | |
93 | 93 | // map the elfinder prefix |
94 | - if (! \Config::get('elfinder.route.prefix')) { |
|
94 | + if (!\Config::get('elfinder.route.prefix')) { |
|
95 | 95 | \Config::set('elfinder.route.prefix', \Config::get('backpack.base.route_prefix').'/elfinder'); |
96 | 96 | } |
97 | 97 | } |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | { |
112 | 112 | $crudPubPath = public_path('vendor/backpack/crud'); |
113 | 113 | |
114 | - if (! is_dir($crudPubPath)) { |
|
114 | + if (!is_dir($crudPubPath)) { |
|
115 | 115 | return true; |
116 | 116 | } |
117 | 117 |
@@ -2,8 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace Backpack\CRUD\app\Console\Commands; |
4 | 4 | |
5 | -use Illuminate\Console\Command; |
|
6 | -use Symfony\Component\Process\Process; |
|
7 | 5 | use Backpack\Base\app\Console\Commands\Install as BaseInstall; |
8 | 6 | |
9 | 7 | class Install extends BaseInstall |