@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types = 1); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Thinktomorrow\Chief\Filters; |
| 6 | 6 | |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | |
| 51 | 51 | public function render(array $requestInput = []): string |
| 52 | 52 | { |
| 53 | - $path = $this->viewpath ?? 'chief::back._filters.' . $this->type; |
|
| 53 | + $path = $this->viewpath ?? 'chief::back._filters.'.$this->type; |
|
| 54 | 54 | $this->default($requestInput[$this->name] ?? null); |
| 55 | 55 | |
| 56 | 56 | return view($path, ['filter' => $this])->render(); |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | if (!in_array($name, ['name', 'label', 'description', 'query', 'viewpath', 'default'])) { |
| 67 | - throw new \InvalidArgumentException('Cannot set value by ['. $name .'].'); |
|
| 67 | + throw new \InvalidArgumentException('Cannot set value by ['.$name.'].'); |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | $this->values[$name] = $arguments[0]; |
@@ -37,8 +37,8 @@ discard block |
||
| 37 | 37 | { |
| 38 | 38 | $requestInput = request()->all(); |
| 39 | 39 | |
| 40 | - return array_reduce($this->all(), function ($carry, Filter $filter) use ($requestInput) { |
|
| 41 | - return $carry . $filter->render($requestInput); |
|
| 40 | + return array_reduce($this->all(), function($carry, Filter $filter) use ($requestInput) { |
|
| 41 | + return $carry.$filter->render($requestInput); |
|
| 42 | 42 | }, ''); |
| 43 | 43 | } |
| 44 | 44 | |
@@ -54,14 +54,14 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | public function keys(): array |
| 56 | 56 | { |
| 57 | - return array_map(function (Filter $filter) { |
|
| 57 | + return array_map(function(Filter $filter) { |
|
| 58 | 58 | return $filter->key(); |
| 59 | 59 | }, $this->filters); |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | private function validateFilters(array $filters) |
| 63 | 63 | { |
| 64 | - array_map(function (Filter $filter) { |
|
| 64 | + array_map(function(Filter $filter) { |
|
| 65 | 65 | }, $filters); |
| 66 | 66 | } |
| 67 | 67 | |
@@ -86,8 +86,8 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | public function offsetSet($offset, $value) |
| 88 | 88 | { |
| 89 | - if (! $value instanceof Filter) { |
|
| 90 | - throw new \InvalidArgumentException('Passed value must be of type ' . Filter::class); |
|
| 89 | + if (!$value instanceof Filter) { |
|
| 90 | + throw new \InvalidArgumentException('Passed value must be of type '.Filter::class); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | $this->filters[$offset] = $value; |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | |
| 106 | 106 | private function sanitizeFilters(array $filters) |
| 107 | 107 | { |
| 108 | - return array_map(function ($filter) { |
|
| 108 | + return array_map(function($filter) { |
|
| 109 | 109 | if (is_string($filter) && class_exists($filter)) { |
| 110 | 110 | return $filter::init(); |
| 111 | 111 | } |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | |
| 16 | 16 | public function apply($value = null): Closure |
| 17 | 17 | { |
| 18 | - return $this->query && $this->query instanceof Closure ? $this->query : function ($query) { |
|
| 18 | + return $this->query && $this->query instanceof Closure ? $this->query : function($query) { |
|
| 19 | 19 | return $query; |
| 20 | 20 | }; |
| 21 | 21 | } |
@@ -6,8 +6,8 @@ discard block |
||
| 6 | 6 | |
| 7 | 7 | class FilterType |
| 8 | 8 | { |
| 9 | - const INPUT = 'input'; // oneliner text (input) |
|
| 10 | - const SELECT = 'select'; // Select options |
|
| 9 | + const INPUT = 'input'; // oneliner text (input) |
|
| 10 | + const SELECT = 'select'; // Select options |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * @var string |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | static::INPUT, |
| 21 | 21 | static::SELECT, |
| 22 | 22 | ])) { |
| 23 | - throw new \Exception('Invalid type identifier given [' . $type . '].'); |
|
| 23 | + throw new \Exception('Invalid type identifier given ['.$type.'].'); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | $this->type = $type; |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | |
| 29 | 29 | public static function fromString(string $type) |
| 30 | 30 | { |
| 31 | - $class = 'Thinktomorrow\Chief\Filters\Types\\' . ucfirst($type . 'Filter'); |
|
| 31 | + $class = 'Thinktomorrow\Chief\Filters\Types\\'.ucfirst($type.'Filter'); |
|
| 32 | 32 | |
| 33 | 33 | return new $class(new static($type)); |
| 34 | 34 | } |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | |
| 70 | 70 | public function findAll(): Collection |
| 71 | 71 | { |
| 72 | - return $this->model->archived()->get()->map(function ($model) { |
|
| 72 | + return $this->model->archived()->get()->map(function($model) { |
|
| 73 | 73 | return $this->managers->findByModel($model); |
| 74 | 74 | }); |
| 75 | 75 | } |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | |
| 100 | 100 | public function guard($verb): Assistant |
| 101 | 101 | { |
| 102 | - if (! $this->can($verb)) { |
|
| 102 | + if (!$this->can($verb)) { |
|
| 103 | 103 | NotAllowedManagerRoute::notAllowedVerb($verb, $this->manager); |
| 104 | 104 | } |
| 105 | 105 | |
@@ -39,11 +39,11 @@ |
||
| 39 | 39 | |
| 40 | 40 | public static function notAllowedVerb($verb, Manager $manager) |
| 41 | 41 | { |
| 42 | - throw new static('Not allowed to '.$verb.' a model. '.ucfirst($verb).' route is not allowed by the ' . $manager->details()->key.' manager.'); |
|
| 42 | + throw new static('Not allowed to '.$verb.' a model. '.ucfirst($verb).' route is not allowed by the '.$manager->details()->key.' manager.'); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | public static function notAllowedPermission($permission, Manager $manager) |
| 46 | 46 | { |
| 47 | - throw new static('Not allowed permission for '.$permission.' on a model as managed by the ' . $manager->details()->key.' manager.'); |
|
| 47 | + throw new static('Not allowed permission for '.$permission.' on a model as managed by the '.$manager->details()->key.' manager.'); |
|
| 48 | 48 | } |
| 49 | 49 | } |
@@ -64,7 +64,7 @@ |
||
| 64 | 64 | |
| 65 | 65 | public function __toString() |
| 66 | 66 | { |
| 67 | - return (string) $this->get('key'); |
|
| 67 | + return (string)$this->get('key'); |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | /** |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | $internal_label = contract($this->model, ProvidesFlatReference::class) ? $this->model->flatReferenceLabel() : $key; |
| 22 | 22 | |
| 23 | 23 | // Manager index and header info |
| 24 | - $title = $this->model->title ?? ($this->model->id ? $labelSingular . ' ' . $this->model->id : $labelSingular); |
|
| 24 | + $title = $this->model->title ?? ($this->model->id ? $labelSingular.' '.$this->model->id : $labelSingular); |
|
| 25 | 25 | |
| 26 | 26 | return new Details( |
| 27 | 27 | $id, |
@@ -46,14 +46,14 @@ discard block |
||
| 46 | 46 | */ |
| 47 | 47 | public function filter(callable $callback): self |
| 48 | 48 | { |
| 49 | - if (! is_callable($callback)) { |
|
| 49 | + if (!is_callable($callback)) { |
|
| 50 | 50 | return new static($this->registrations); |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | $registrations = $this->registrations; |
| 54 | 54 | |
| 55 | 55 | foreach ($registrations as $k => $registration) { |
| 56 | - if (!! call_user_func($callback, $registration)) { |
|
| 56 | + if (!!call_user_func($callback, $registration)) { |
|
| 57 | 57 | unset($registrations[$k]); |
| 58 | 58 | } |
| 59 | 59 | } |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | public function filterByTag($tag): self |
| 80 | 80 | { |
| 81 | 81 | try { |
| 82 | - return $this->filterBy('tags', (array) $tag); |
|
| 82 | + return $this->filterBy('tags', (array)$tag); |
|
| 83 | 83 | } catch (NonRegisteredManager $e) { |
| 84 | 84 | return new static(); |
| 85 | 85 | } |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | foreach ($registrations as $k => $registration) { |
| 108 | 108 | $containsValue = $registration->has($key, $value); |
| 109 | 109 | |
| 110 | - if ($type == 'filter' && ! $containsValue) { |
|
| 110 | + if ($type == 'filter' && !$containsValue) { |
|
| 111 | 111 | unset($registrations[$k]); |
| 112 | 112 | } |
| 113 | 113 | |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | private function registrationMustExistConstraint(string $key, $value, $registrations): void |
| 137 | 137 | { |
| 138 | 138 | if (empty($registrations) && count($registrations) != $this->registrations) { |
| 139 | - throw new NonRegisteredManager('No manager found for ' . $key . ' [' . print_r($value, true) . ']. Did you perhaps forgot to register the manager?'); |
|
| 139 | + throw new NonRegisteredManager('No manager found for '.$key.' ['.print_r($value, true).']. Did you perhaps forgot to register the manager?'); |
|
| 140 | 140 | } |
| 141 | 141 | } |
| 142 | 142 | } |