@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | |
107 | 107 | public function setFunctions($functions) |
108 | 108 | { |
109 | - if (! is_array($functions)) { |
|
109 | + if (!is_array($functions)) { |
|
110 | 110 | $functions = array($functions); |
111 | 111 | } |
112 | 112 | |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | public function applyFunctions($value) |
117 | 117 | { |
118 | 118 | foreach ($this->functions as $function) { |
119 | - if (! function_exists($function)) { |
|
119 | + if (!function_exists($function)) { |
|
120 | 120 | throw new \Exception("Function ".$function." does not exist"); |
121 | 121 | } |
122 | 122 | |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | { |
135 | 135 | $this->value = $value; |
136 | 136 | |
137 | - if (! $this->hideValue()) { |
|
137 | + if (!$this->hideValue()) { |
|
138 | 138 | $this->formField->val($this->value); |
139 | 139 | } |
140 | 140 | } |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | |
169 | 169 | public function getFormField() |
170 | 170 | { |
171 | - if (! $this->hideValue()) { |
|
171 | + if (!$this->hideValue()) { |
|
172 | 172 | if (Request::old($this->name)) { |
173 | 173 | $this->formField->val(Request::old($this->name)); |
174 | 174 | } |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | */ |
183 | 183 | public function hideValue($value = null) |
184 | 184 | { |
185 | - if (! is_null($value)) { |
|
185 | + if (!is_null($value)) { |
|
186 | 186 | $this->hideValue = $value; |
187 | 187 | } |
188 | 188 | |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | */ |
195 | 195 | public function saveIfEmpty($value = null) |
196 | 196 | { |
197 | - if (! is_null($value)) { |
|
197 | + if (!is_null($value)) { |
|
198 | 198 | $this->saveIfEmpty = $value; |
199 | 199 | } |
200 | 200 | |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | */ |
207 | 207 | public function noValidate($value = null) |
208 | 208 | { |
209 | - if (! is_null($value)) { |
|
209 | + if (!is_null($value)) { |
|
210 | 210 | $this->noValidate = $value; |
211 | 211 | } |
212 | 212 |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | |
81 | 81 | $field = new Field($this->column, $formElement, $this->config['name'], $this->config['presentation']); |
82 | 82 | |
83 | - if (! empty($this->config['validation'])) { |
|
83 | + if (!empty($this->config['validation'])) { |
|
84 | 84 | if ($this->config['validation'] === 'no_validate') { |
85 | 85 | $this->config['no_validate'] = true; |
86 | 86 | } else { |
@@ -88,11 +88,11 @@ discard block |
||
88 | 88 | } |
89 | 89 | } |
90 | 90 | |
91 | - if (! empty($this->config['functions'])) { |
|
91 | + if (!empty($this->config['functions'])) { |
|
92 | 92 | $field->setFunctions($this->config['functions']); |
93 | 93 | } |
94 | 94 | |
95 | - if (! empty($this->config['no_validate']) && $this->config['no_validate'] === true) { |
|
95 | + if (!empty($this->config['no_validate']) && $this->config['no_validate'] === true) { |
|
96 | 96 | $field->noValidate(true); |
97 | 97 | } |
98 | 98 | |
@@ -117,15 +117,15 @@ discard block |
||
117 | 117 | |
118 | 118 | protected function getFormElement() |
119 | 119 | { |
120 | - if (! empty($this->config['form_type'])) { |
|
121 | - if (! in_array($this->config['form_type'], $this->databaseTypeToFormType)) { |
|
122 | - throw new FactoryException("Unknown form type " . $this->config['form_type']); |
|
120 | + if (!empty($this->config['form_type'])) { |
|
121 | + if (!in_array($this->config['form_type'], $this->databaseTypeToFormType)) { |
|
122 | + throw new FactoryException("Unknown form type ".$this->config['form_type']); |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | $formElementType = $this->config['form_type']; |
126 | 126 | } else { |
127 | - if (! array_key_exists($this->column->getType()->getName(), $this->databaseTypeToFormType)) { |
|
128 | - throw new FactoryException("No form type found for database type " . $this->column->getType()->getName()); |
|
127 | + if (!array_key_exists($this->column->getType()->getName(), $this->databaseTypeToFormType)) { |
|
128 | + throw new FactoryException("No form type found for database type ".$this->column->getType()->getName()); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | $formElementType = $this->databaseTypeToFormType[$this->column->getType()->getName()]; |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | |
139 | 139 | $formElement = $this->factory->get($formElementType, []); |
140 | 140 | |
141 | - if (! empty($this->config['attr']) && is_array($this->config['attr'])) { |
|
141 | + if (!empty($this->config['attr']) && is_array($this->config['attr'])) { |
|
142 | 142 | $formElement->attr($this->config['attr']); |
143 | 143 | } |
144 | 144 | |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | } |
150 | 150 | |
151 | 151 | if ($formElementType === 'textarea') { |
152 | - $formElement->class('form-control ' . config('anavel-crud.text_editor')); |
|
152 | + $formElement->class('form-control '.config('anavel-crud.text_editor')); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | if ($formElementType === 'checkbox') { |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | } |
158 | 158 | |
159 | 159 | if (isset($this->config['defaults'])) { |
160 | - if (! is_array($this->config['defaults'])) { |
|
160 | + if (!is_array($this->config['defaults'])) { |
|
161 | 161 | $formElement->val(transcrud($this->config['defaults'])); |
162 | 162 | } else { |
163 | 163 | $defaults = []; |