Passed
Pull Request — master (#28)
by Enjoys
21:42 queued 16:27
created
src/Form.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      * @param array|Closure():array $data
95 95
      * @return $this
96 96
      */
97
-    public function setDefaults(array|Closure $data): Form
97
+    public function setDefaults(array | Closure $data): Form
98 98
     {
99 99
         if ($this->submitted === true) {
100 100
             /** @var array $requestData */
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             };
106 106
             $data = array_filter(
107 107
                 $requestData,
108
-                function ($k) {
108
+                function($k) {
109 109
                     return !in_array($k, [self::_TOKEN_CSRF_, self::_TOKEN_SUBMIT_]);
110 110
                 },
111 111
                 ARRAY_FILTER_USE_KEY
Please login to merge, or discard this patch.
src/Traits/Attributes.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
         return $this->attributes[$namespace];
25 25
     }
26 26
 
27
-    public function getAttribute(string $name, string $namespace = 'general'): AttributeInterface|null
27
+    public function getAttribute(string $name, string $namespace = 'general'): AttributeInterface | null
28 28
     {
29 29
         return $this->getAttributeCollection($namespace)->get($name);
30 30
     }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
     public function getAttributesString(string $namespace = 'general'): string
90 90
     {
91
-        $attributesStringed = (string)$this->getAttributeCollection($namespace);
91
+        $attributesStringed = (string) $this->getAttributeCollection($namespace);
92 92
 
93 93
         if (empty($attributesStringed)) {
94 94
             return '';
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         return ' ' . $attributesStringed;
98 98
     }
99 99
 
100
-    public function removeAttribute(string|AttributeInterface $attribute, string $namespace = 'general'): static
100
+    public function removeAttribute(string | AttributeInterface $attribute, string $namespace = 'general'): static
101 101
     {
102 102
         $this->getAttributeCollection($namespace)->remove($attribute);
103 103
         return $this;
Please login to merge, or discard this patch.
src/Traits/Fill.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      * Из-за того что php преобразует строки, содержащие целое число к int, приходится добавлять
49 49
      * пробел либо в начало, либо в конец ключа. В итоге пробелы в начале и в конце удаляются автоматически.
50 50
      */
51
-    public function fill(array|Closure $data, bool $useTitleAsValue = false): static
51
+    public function fill(array | Closure $data, bool $useTitleAsValue = false): static
52 52
     {
53 53
         if ($data instanceof Closure) {
54 54
             /** @var mixed $data */
Please login to merge, or discard this patch.
src/Interfaces/Fillable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 
17 17
     public function getParentName(): string;
18 18
 
19
-    public function fill(array|\Closure $data, bool $useTitleAsValue = false): static;
19
+    public function fill(array | \Closure $data, bool $useTitleAsValue = false): static;
20 20
 
21 21
     /**
22 22
      * @psalm-return array<array-key, Element&Fillable>
Please login to merge, or discard this patch.