@@ -60,8 +60,8 @@ discard block |
||
| 60 | 60 | */ |
| 61 | 61 | private function showSingleValueValidation(): void |
| 62 | 62 | { |
| 63 | - $this->console('Basic usage sample.' . PHP_EOL); |
|
| 64 | - $this->console('===================' . PHP_EOL); |
|
| 63 | + $this->console('Basic usage sample.'.PHP_EOL); |
|
| 64 | + $this->console('==================='.PHP_EOL); |
|
| 65 | 65 | |
| 66 | 66 | // Let's build a rule that validates an input to be either `null` or a string from 5 to 10 characters. |
| 67 | 67 | $validator = v::validator( |
@@ -71,21 +71,21 @@ discard block |
||
| 71 | 71 | // let's try validation with valid input |
| 72 | 72 | $input = null; |
| 73 | 73 | if ($validator->validate($input) === true) { |
| 74 | - $this->console("Validation OK for `null`." . PHP_EOL); |
|
| 74 | + $this->console("Validation OK for `null`.".PHP_EOL); |
|
| 75 | 75 | } else { |
| 76 | 76 | assert(false, 'We should not be here.'); |
| 77 | 77 | } |
| 78 | 78 | // another one |
| 79 | 79 | $input = 'Hello'; |
| 80 | 80 | if ($validator->validate($input) === true) { |
| 81 | - $this->console("Validation OK for `$input`." . PHP_EOL); |
|
| 81 | + $this->console("Validation OK for `$input`.".PHP_EOL); |
|
| 82 | 82 | } else { |
| 83 | 83 | assert(false, 'We should not be here.'); |
| 84 | 84 | } |
| 85 | 85 | // this one should not pass the validation |
| 86 | 86 | $input = 'This string is too long.'; |
| 87 | 87 | if ($validator->validate($input) === false) { |
| 88 | - $this->console("Input `$input` has not passed validation." . PHP_EOL); |
|
| 88 | + $this->console("Input `$input` has not passed validation.".PHP_EOL); |
|
| 89 | 89 | $this->printErrors($validator->getErrors()); |
| 90 | 90 | } else { |
| 91 | 91 | assert(false, 'We should not be here.'); |
@@ -101,9 +101,9 @@ discard block |
||
| 101 | 101 | r::isString(r::stringToDateTime(DATE_ATOM, r::between($fromDate, $toDate))) |
| 102 | 102 | ->setName('my_date')->enableCapture() |
| 103 | 103 | ); |
| 104 | - $input = '2001-03-04T05:06:07+08:00'; |
|
| 104 | + $input = '2001-03-04T05:06:07+08:00'; |
|
| 105 | 105 | if ($validator->validate($input) === true) { |
| 106 | - $this->console("Validation OK for `$input`." . PHP_EOL); |
|
| 106 | + $this->console("Validation OK for `$input`.".PHP_EOL); |
|
| 107 | 107 | $myDate = $validator->getCaptures()->get()['my_date']; |
| 108 | 108 | // note that captured date is already DateTime |
| 109 | 109 | assert($myDate instanceof DateTimeInterface); |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | assert(false, 'We should not be here.'); |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | - $this->console(PHP_EOL . PHP_EOL . PHP_EOL); |
|
| 114 | + $this->console(PHP_EOL.PHP_EOL.PHP_EOL); |
|
| 115 | 115 | |
| 116 | 116 | // The output would be |
| 117 | 117 | // ------------------------------------------------------------------------------------------------------- |
@@ -130,8 +130,8 @@ discard block |
||
| 130 | 130 | */ |
| 131 | 131 | private function showArrayValuesValidation(): void |
| 132 | 132 | { |
| 133 | - $this->console('Advanced usage sample.' . PHP_EOL); |
|
| 134 | - $this->console('===================' . PHP_EOL); |
|
| 133 | + $this->console('Advanced usage sample.'.PHP_EOL); |
|
| 134 | + $this->console('==================='.PHP_EOL); |
|
| 135 | 135 | |
| 136 | 136 | // Validation rules for input are |
| 137 | 137 | // - `email` must be a string and a valid email value (as FILTER_VALIDATE_EMAIL describes) |
@@ -152,10 +152,10 @@ discard block |
||
| 152 | 152 | 'last_name' => '', |
| 153 | 153 | 'payment_plan' => '123', |
| 154 | 154 | ]; |
| 155 | - $this->console('Invalid data (errors)' . PHP_EOL); |
|
| 155 | + $this->console('Invalid data (errors)'.PHP_EOL); |
|
| 156 | 156 | $validator->validate($invalidInput); |
| 157 | 157 | $this->printErrors($validator->getErrors()); |
| 158 | - $this->console('Invalid data (captures)' . PHP_EOL); |
|
| 158 | + $this->console('Invalid data (captures)'.PHP_EOL); |
|
| 159 | 159 | $this->printCaptures($validator->getCaptures()); |
| 160 | 160 | |
| 161 | 161 | // Check with valid data |
@@ -165,10 +165,10 @@ discard block |
||
| 165 | 165 | 'last_name' => null, |
| 166 | 166 | 'payment_plan' => '2', |
| 167 | 167 | ]; |
| 168 | - $this->console(PHP_EOL . 'Valid data (errors)' . PHP_EOL); |
|
| 168 | + $this->console(PHP_EOL.'Valid data (errors)'.PHP_EOL); |
|
| 169 | 169 | $validator->validate($validInput); |
| 170 | 170 | $this->printErrors($validator->getErrors()); |
| 171 | - $this->console('Valid data (captures)' . PHP_EOL); |
|
| 171 | + $this->console('Valid data (captures)'.PHP_EOL); |
|
| 172 | 172 | $this->printCaptures($validator->getCaptures()); |
| 173 | 173 | |
| 174 | 174 | // The output would be |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | if ($hasErrors === false) { |
| 211 | - $this->console('No errors' . PHP_EOL); |
|
| 211 | + $this->console('No errors'.PHP_EOL); |
|
| 212 | 212 | } |
| 213 | 213 | } |
| 214 | 214 | |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | $context = $error->getMessageContext(); |
| 227 | 227 | $errorMsg = MessageFormatter::formatMessage('en', $errorMsg, $context !== null ? $context : []); |
| 228 | 228 | |
| 229 | - $this->console("$entry failed for `$paramValue` with: $errorMsg" . PHP_EOL); |
|
| 229 | + $this->console("$entry failed for `$paramValue` with: $errorMsg".PHP_EOL); |
|
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 232 | /** |
@@ -241,11 +241,11 @@ discard block |
||
| 241 | 241 | foreach ($captures->get() as $name => $value) { |
| 242 | 242 | $hasCaptures = true; |
| 243 | 243 | $type = gettype($value); |
| 244 | - $this->console("`$name` = `$value` ($type)" . PHP_EOL); |
|
| 244 | + $this->console("`$name` = `$value` ($type)".PHP_EOL); |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | if ($hasCaptures === false) { |
| 248 | - $this->console('No captures' . PHP_EOL); |
|
| 248 | + $this->console('No captures'.PHP_EOL); |
|
| 249 | 249 | } |
| 250 | 250 | } |
| 251 | 251 | |