We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -2,11 +2,11 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Backpack\CRUD\Tests\Unit\CrudPanel; |
| 4 | 4 | |
| 5 | -use Illuminate\Support\Collection; |
|
| 6 | -use Illuminate\Support\Facades\DB; |
|
| 7 | -use Backpack\CRUD\Tests\Unit\Models\User; |
|
| 8 | 5 | use Backpack\CRUD\Tests\Unit\Models\Article; |
| 6 | +use Backpack\CRUD\Tests\Unit\Models\User; |
|
| 9 | 7 | use Illuminate\Database\Eloquent\ModelNotFoundException; |
| 8 | +use Illuminate\Support\Collection; |
|
| 9 | +use Illuminate\Support\Facades\DB; |
|
| 10 | 10 | |
| 11 | 11 | class CrudPanelReadTest extends BaseDBCrudPanelTest |
| 12 | 12 | { |
@@ -13,13 +13,13 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('roles', function (Blueprint $table) { |
|
| 16 | + Schema::create('roles', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->string('name')->unique(); |
| 19 | 19 | $table->timestamps(); |
| 20 | 20 | }); |
| 21 | 21 | |
| 22 | - Schema::create('user_role', function (Blueprint $table) { |
|
| 22 | + Schema::create('user_role', function(Blueprint $table) { |
|
| 23 | 23 | $table->integer('user_id')->length(10)->unsigned(); |
| 24 | 24 | $table->integer('role_id')->length(10)->unsigned(); |
| 25 | 25 | $table->timestamps(); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('addresses', function (Blueprint $table) { |
|
| 16 | + Schema::create('addresses', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->integer('account_details_id')->length(10)->unsigned(); |
| 19 | 19 | $table->string('city'); |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('articles', function ($table) { |
|
| 15 | + Schema::create('articles', function($table) { |
|
| 16 | 16 | $table->increments('id'); |
| 17 | 17 | $table->integer('user_id')->length(10)->unsigned(); |
| 18 | 18 | $table->string('content'); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('account_details', function (Blueprint $table) { |
|
| 16 | + Schema::create('account_details', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->integer('user_id')->length(10)->unsigned(); |
| 19 | 19 | $table->string('nickname'); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('users', function (Blueprint $table) { |
|
| 16 | + Schema::create('users', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->string('name'); |
| 19 | 19 | $table->string('email')->unique(); |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | // uncomment the next statement to map strings to enum types in doctrine and get over the 'Unknown database type enum' DBAL error |
| 16 | 16 | // Schema::getConnection()->getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('enum', 'string'); |
| 17 | 17 | |
| 18 | - Schema::create('column_types', function ($table) { |
|
| 18 | + Schema::create('column_types', function($table) { |
|
| 19 | 19 | $table->bigInteger('bigIntegerCol'); |
| 20 | 20 | $table->binary('binaryCol'); |
| 21 | 21 | $table->boolean('booleanCol'); |
@@ -217,7 +217,7 @@ |
||
| 217 | 217 | |
| 218 | 218 | private function getButtonByName($name) |
| 219 | 219 | { |
| 220 | - return $this->crudPanel->buttons->first(function ($value) use ($name) { |
|
| 220 | + return $this->crudPanel->buttons->first(function($value) use ($name) { |
|
| 221 | 221 | return $value->name == $name; |
| 222 | 222 | }); |
| 223 | 223 | } |
@@ -1,10 +1,10 @@ |
||
| 1 | 1 | {{-- select_from_array column --}} |
| 2 | 2 | <td> |
| 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 | </td> |