We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | return; |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | - if (! $this->validCode(config('backpack.base.license_code'))) { |
|
| 31 | + if (!$this->validCode(config('backpack.base.license_code'))) { |
|
| 32 | 32 | \Alert::add('warning', "<strong>You're using unlicensed software.</strong> Please ask your web developer to <a target='_blank' class='alert-link text-white' href='http://backpackforlaravel.com'>purchase a license code</a> to hide this message."); |
| 33 | 33 | } |
| 34 | 34 | } |
@@ -46,6 +46,6 @@ discard block |
||
| 46 | 46 | */ |
| 47 | 47 | private function validCode($j) |
| 48 | 48 | { |
| 49 | - $k = str_replace('-', '', $j); $s = substr($k, 0, 8); $c = substr($k, 8, 2); $a = substr($k, 10, 2); $l = substr($k, 12, 2); $p = substr($k, 14, 2); $n = substr($k, 16, 2); $m = substr($k, 18, 2); $z = substr($k, 20, 24); $w = 'ADEFHKLMVWXYZ146'; $x = $s; for ($i = 0; $i < strlen($w); $i++) { $r = $w[$i]; $x = str_replace($r, '-', $x); } $x = str_replace('-', '', $x); if ($x != '') { return false; } if (substr_count($j, '-') != 5) { return false; } $e = substr(hexdec(hash('crc32b', substr($k, 0, 20))), -4); if ($z !== $e) { return false; } $o = strrev(substr(preg_replace('/[0-9]+/', '', strtoupper(sha1($a.'sand('.$s.')'.$n.'tos()'))), 2, 2)); if ($m !== $o) { return false; } $o2 = substr(((int)preg_replace('/[^0-9]/','', $s.$c)==0 ? 8310 : (int)preg_replace('/[^0-9]/','', $s.$c) )*9971, -2);if ($a !== $o2) {return false;} return true; |
|
| 49 | + $k = str_replace('-', '', $j); $s = substr($k, 0, 8); $c = substr($k, 8, 2); $a = substr($k, 10, 2); $l = substr($k, 12, 2); $p = substr($k, 14, 2); $n = substr($k, 16, 2); $m = substr($k, 18, 2); $z = substr($k, 20, 24); $w = 'ADEFHKLMVWXYZ146'; $x = $s; for ($i = 0; $i < strlen($w); $i++) { $r = $w[$i]; $x = str_replace($r, '-', $x); } $x = str_replace('-', '', $x); if ($x != '') { return false; } if (substr_count($j, '-') != 5) { return false; } $e = substr(hexdec(hash('crc32b', substr($k, 0, 20))), -4); if ($z !== $e) { return false; } $o = strrev(substr(preg_replace('/[0-9]+/', '', strtoupper(sha1($a.'sand('.$s.')'.$n.'tos()'))), 2, 2)); if ($m !== $o) { return false; } $o2 = substr(((int) preg_replace('/[^0-9]/', '', $s.$c) == 0 ? 8310 : (int) preg_replace('/[^0-9]/', '', $s.$c)) * 9971, -2); if ($a !== $o2) {return false; } return true; |
|
| 50 | 50 | } |
| 51 | 51 | } |
@@ -13,5 +13,5 @@ |
||
| 13 | 13 | (array) config('backpack.base.middleware_key', 'admin') |
| 14 | 14 | ), |
| 15 | 15 | 'namespace' => 'App\Http\Controllers\Admin', |
| 16 | -], function () { // custom admin routes |
|
| 16 | +], function() { // custom admin routes |
|
| 17 | 17 | }); // this should be the absolute last line of this file |
@@ -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')->unsigned(); |
| 19 | 19 | $table->string('city')->nullable(); |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | |
| 27 | 27 | $app['router']->get('admin/users', "$controller@index")->name('admin.users.index'); |
| 28 | 28 | |
| 29 | - $app->singleton('crud', function ($app) { |
|
| 29 | + $app->singleton('crud', function($app) { |
|
| 30 | 30 | return new CrudPanel($app); |
| 31 | 31 | }); |
| 32 | 32 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | public function makeFirstColumn() |
| 116 | 116 | { |
| 117 | - if (! $this->columns()) { |
|
| 117 | + if (!$this->columns()) { |
|
| 118 | 118 | return false; |
| 119 | 119 | } |
| 120 | 120 | |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | */ |
| 160 | 160 | public function removeColumns($columns) |
| 161 | 161 | { |
| 162 | - if (! empty($columns)) { |
|
| 162 | + if (!empty($columns)) { |
|
| 163 | 163 | foreach ($columns as $columnKey) { |
| 164 | 164 | $this->removeColumn($columnKey); |
| 165 | 165 | } |
@@ -252,8 +252,8 @@ discard block |
||
| 252 | 252 | { |
| 253 | 253 | $columns = $this->columns(); |
| 254 | 254 | |
| 255 | - return collect($columns)->pluck('entity')->reject(function ($value, $key) { |
|
| 256 | - return ! $value; |
|
| 255 | + return collect($columns)->pluck('entity')->reject(function($value, $key) { |
|
| 256 | + return !$value; |
|
| 257 | 257 | })->toArray(); |
| 258 | 258 | } |
| 259 | 259 | |
@@ -329,7 +329,7 @@ discard block |
||
| 329 | 329 | */ |
| 330 | 330 | public function hasColumnWhere($attribute, $value) |
| 331 | 331 | { |
| 332 | - $match = Arr::first($this->columns(), function ($column, $columnKey) use ($attribute, $value) { |
|
| 332 | + $match = Arr::first($this->columns(), function($column, $columnKey) use ($attribute, $value) { |
|
| 333 | 333 | return isset($column[$attribute]) && $column[$attribute] == $value; |
| 334 | 334 | }); |
| 335 | 335 | |
@@ -345,7 +345,7 @@ discard block |
||
| 345 | 345 | */ |
| 346 | 346 | public function firstColumnWhere($attribute, $value) |
| 347 | 347 | { |
| 348 | - return Arr::first($this->columns(), function ($column, $columnKey) use ($attribute, $value) { |
|
| 348 | + return Arr::first($this->columns(), function($column, $columnKey) use ($attribute, $value) { |
|
| 349 | 349 | return isset($column[$attribute]) && $column[$attribute] == $value; |
| 350 | 350 | }); |
| 351 | 351 | } |
@@ -395,8 +395,8 @@ discard block |
||
| 395 | 395 | */ |
| 396 | 396 | public function countColumnsWithoutActions() |
| 397 | 397 | { |
| 398 | - return collect($this->columns())->filter(function ($column, $key) { |
|
| 399 | - return ! isset($column['hasActions']) || $column['hasActions'] == false; |
|
| 398 | + return collect($this->columns())->filter(function($column, $key) { |
|
| 399 | + return !isset($column['hasActions']) || $column['hasActions'] == false; |
|
| 400 | 400 | })->count(); |
| 401 | 401 | } |
| 402 | 402 | |
@@ -46,8 +46,8 @@ discard block |
||
| 46 | 46 | // otherwise assume the arguments are actually the configuration array |
| 47 | 47 | $config = []; |
| 48 | 48 | |
| 49 | - if (! is_array($arg)) { |
|
| 50 | - if (! class_exists($arg)) { |
|
| 49 | + if (!is_array($arg)) { |
|
| 50 | + if (!class_exists($arg)) { |
|
| 51 | 51 | return response()->json(['error' => 'Class: '.$arg.' does not exists'], 500); |
| 52 | 52 | } |
| 53 | 53 | $config['model'] = $arg; |
@@ -77,8 +77,7 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | if ($search_string === false) { |
| 79 | 79 | return ($config['paginate'] !== false) ? |
| 80 | - $config['query']->paginate($config['paginate']) : |
|
| 81 | - $config['query']->get(); |
|
| 80 | + $config['query']->paginate($config['paginate']) : $config['query']->get(); |
|
| 82 | 81 | } |
| 83 | 82 | |
| 84 | 83 | $textColumnTypes = ['string', 'json_string', 'text', 'longText', 'json_array', 'json']; |
@@ -89,8 +88,8 @@ discard block |
||
| 89 | 88 | // .... 'query' => function($model) { return $model->where('active', 1); } |
| 90 | 89 | // So it reads: SELECT ... WHERE active = 1 AND (XXX = x OR YYY = y) and not SELECT ... WHERE active = 1 AND XXX = x OR YYY = y; |
| 91 | 90 | |
| 92 | - if (! empty($config['query']->getQuery()->wheres)) { |
|
| 93 | - $config['query'] = $config['query']->where(function ($query) use ($model_instance, $config, $search_string, $textColumnTypes) { |
|
| 91 | + if (!empty($config['query']->getQuery()->wheres)) { |
|
| 92 | + $config['query'] = $config['query']->where(function($query) use ($model_instance, $config, $search_string, $textColumnTypes) { |
|
| 94 | 93 | foreach ((array) $config['searchable_attributes'] as $k => $searchColumn) { |
| 95 | 94 | $operation = ($k == 0) ? 'where' : 'orWhere'; |
| 96 | 95 | $columnType = $model_instance->getColumnType($searchColumn); |
@@ -122,7 +121,6 @@ discard block |
||
| 122 | 121 | |
| 123 | 122 | // return the results with or without pagination |
| 124 | 123 | return ($config['paginate'] !== false) ? |
| 125 | - $config['query']->paginate($config['paginate']) : |
|
| 126 | - $config['query']->get(); |
|
| 124 | + $config['query']->paginate($config['paginate']) : $config['query']->get(); |
|
| 127 | 125 | } |
| 128 | 126 | } |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | */ |
| 57 | 57 | public function getEntry($id) |
| 58 | 58 | { |
| 59 | - if (! $this->entry) { |
|
| 59 | + if (!$this->entry) { |
|
| 60 | 60 | $this->entry = $this->model->findOrFail($id); |
| 61 | 61 | $this->entry = $this->entry->withFakes(); |
| 62 | 62 | } |
@@ -258,7 +258,7 @@ discard block |
||
| 258 | 258 | // we will apply the same labels as the values to the menu if developer didn't |
| 259 | 259 | $this->abortIfInvalidPageLength($menu[0]); |
| 260 | 260 | |
| 261 | - if (! isset($menu[1]) || ! is_array($menu[1])) { |
|
| 261 | + if (!isset($menu[1]) || !is_array($menu[1])) { |
|
| 262 | 262 | $menu[1] = $menu[0]; |
| 263 | 263 | } |
| 264 | 264 | } else { |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | { |
| 42 | 42 | $this->crud->allowAccess('list'); |
| 43 | 43 | |
| 44 | - $this->crud->operation('list', function () { |
|
| 44 | + $this->crud->operation('list', function() { |
|
| 45 | 45 | $this->crud->loadDefaultOperationSettingsFromConfig(); |
| 46 | 46 | }); |
| 47 | 47 | } |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | $column_number = (int) $order['column']; |
| 100 | 100 | $column_direction = (strtolower((string) $order['dir']) == 'asc' ? 'ASC' : 'DESC'); |
| 101 | 101 | $column = $this->crud->findColumnById($column_number); |
| 102 | - if ($column['tableColumn'] && ! isset($column['orderLogic'])) { |
|
| 102 | + if ($column['tableColumn'] && !isset($column['orderLogic'])) { |
|
| 103 | 103 | // apply the current orderBy rules |
| 104 | 104 | $this->crud->orderByWithPrefix($column['name'], $column_direction); |
| 105 | 105 | } |
@@ -119,12 +119,12 @@ discard block |
||
| 119 | 119 | $table = $this->crud->model->getTable(); |
| 120 | 120 | $key = $this->crud->model->getKeyName(); |
| 121 | 121 | |
| 122 | - $hasOrderByPrimaryKey = collect($orderBy)->some(function ($item) use ($key, $table) { |
|
| 122 | + $hasOrderByPrimaryKey = collect($orderBy)->some(function($item) use ($key, $table) { |
|
| 123 | 123 | return (isset($item['column']) && $item['column'] === $key) |
| 124 | 124 | || (isset($item['sql']) && str_contains($item['sql'], "$table.$key")); |
| 125 | 125 | }); |
| 126 | 126 | |
| 127 | - if (! $hasOrderByPrimaryKey) { |
|
| 127 | + if (!$hasOrderByPrimaryKey) { |
|
| 128 | 128 | $this->crud->orderByWithPrefix($this->crud->model->getKeyName(), 'DESC'); |
| 129 | 129 | } |
| 130 | 130 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | |
| 84 | 84 | // otherwise, in case the last line HAS been modified |
| 85 | 85 | // return the last line that has an ending in it |
| 86 | - $possible_end_lines = array_filter($file_lines, function ($k) { |
|
| 86 | + $possible_end_lines = array_filter($file_lines, function($k) { |
|
| 87 | 87 | return strpos($k, '});') === 0; |
| 88 | 88 | }); |
| 89 | 89 | |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | */ |
| 105 | 105 | private function getLastLineNumberThatContains($needle, $haystack) |
| 106 | 106 | { |
| 107 | - $matchingLines = array_filter($haystack, function ($k) use ($needle) { |
|
| 107 | + $matchingLines = array_filter($haystack, function($k) use ($needle) { |
|
| 108 | 108 | return strpos($k, $needle) !== false; |
| 109 | 109 | }); |
| 110 | 110 | |