@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | * @param boolean $isRequired |
| 197 | 197 | * @return $this |
| 198 | 198 | */ |
| 199 | - public function required($isRequired=true) |
|
| 199 | + public function required($isRequired = true) |
|
| 200 | 200 | { |
| 201 | 201 | if ($isRequired) { |
| 202 | 202 | $this->attributes['required'] = true; |
@@ -292,7 +292,7 @@ discard block |
||
| 292 | 292 | |
| 293 | 293 | // If we have a rule with a value |
| 294 | 294 | if (($colon = strpos($rule, ':')) !== false) { |
| 295 | - $rulename = substr($rule, 0, $colon) ; |
|
| 295 | + $rulename = substr($rule, 0, $colon); |
|
| 296 | 296 | |
| 297 | 297 | /** |
| 298 | 298 | * Regular expressions may contain commas and should not be divided by str_getcsv. |