@@ -20,9 +20,10 @@ |
||
20 | 20 | { |
21 | 21 | if (mb_strlen($data, 'UTF-8') >= $this->minLength) { |
22 | 22 | return new Result\Success(); |
23 | - } |
|
24 | - else return new Result\Failure( |
|
23 | + } else { |
|
24 | + return new Result\Failure( |
|
25 | 25 | new RuleError(RuleErrorCode::TOO_SHORT, |
26 | 26 | 'The supplied string is too short')); |
27 | + } |
|
27 | 28 | } |
28 | 29 | } |
29 | 30 | \ No newline at end of file |
@@ -22,9 +22,10 @@ |
||
22 | 22 | { |
23 | 23 | if (mb_strlen($data, 'UTF-8') <= $this->maxLength) { |
24 | 24 | return new Success(); |
25 | - } |
|
26 | - else return new Failure( |
|
25 | + } else { |
|
26 | + return new Failure( |
|
27 | 27 | new RuleError(RuleErrorCode::TOO_LONG, |
28 | 28 | 'The supplied string is too long')); |
29 | + } |
|
29 | 30 | } |
30 | 31 | } |
31 | 32 | \ No newline at end of file |
@@ -36,7 +36,7 @@ |
||
36 | 36 | |
37 | 37 | public function getFirstError() : Error |
38 | 38 | { |
39 | - return $this->errors[0]; |
|
39 | + return $this->errors[ 0 ]; |
|
40 | 40 | |
41 | 41 | } |
42 | 42 | } |
43 | 43 | \ No newline at end of file |
@@ -7,7 +7,7 @@ |
||
7 | 7 | abstract class Result |
8 | 8 | { |
9 | 9 | private $valid; |
10 | - protected $errors = []; |
|
10 | + protected $errors = [ ]; |
|
11 | 11 | |
12 | 12 | public function __construct(bool $valid, Error... $errors) |
13 | 13 | { |
@@ -39,9 +39,10 @@ |
||
39 | 39 | |
40 | 40 | public function validate($data): Result |
41 | 41 | { |
42 | - if (ctype_alnum(str_replace($this->allowedSpecialChars, '', $data))) |
|
43 | - return new Success(); |
|
44 | - else |
|
45 | - return new Failure(new RuleError(RuleErrorCode::NOT_ALNUM, 'String is not Alphanumeric.')); |
|
42 | + if (ctype_alnum(str_replace($this->allowedSpecialChars, '', $data))) { |
|
43 | + return new Success(); |
|
44 | + } else { |
|
45 | + return new Failure(new RuleError(RuleErrorCode::NOT_ALNUM, 'String is not Alphanumeric.')); |
|
46 | + } |
|
46 | 47 | } |
47 | 48 | } |
48 | 49 | \ No newline at end of file |
@@ -90,7 +90,7 @@ |
||
90 | 90 | $containsLower = preg_match('/[a-z]/', $text); |
91 | 91 | |
92 | 92 | if ($this->strictCheck) |
93 | - return !preg_match('/[\W]/', $text) && $containsLower; |
|
93 | + return !preg_match('/[\W]/', $text) && $containsLower; |
|
94 | 94 | else |
95 | 95 | return $containsLower; |
96 | 96 | } |
@@ -46,8 +46,9 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function __construct(int $caseType, bool $allowSpecialChars = true) |
48 | 48 | { |
49 | - if ($caseType > 4 || $caseType < 0) |
|
50 | - throw new InvalidRuleOption($caseType); |
|
49 | + if ($caseType > 4 || $caseType < 0) { |
|
50 | + throw new InvalidRuleOption($caseType); |
|
51 | + } |
|
51 | 52 | |
52 | 53 | $this->caseType = $caseType; |
53 | 54 | $this->strictCheck = !$allowSpecialChars; |
@@ -60,10 +61,11 @@ discard block |
||
60 | 61 | private function isMixed(string $text) : bool |
61 | 62 | { |
62 | 63 | if ($this->strictCheck) { |
63 | - if (preg_match("/^[a-zA-Z]+$/", $text)) |
|
64 | - return preg_match('/[a-z]/', $text) && preg_match('/[A-Z]/', $text); |
|
65 | - else |
|
66 | - return false; |
|
64 | + if (preg_match("/^[a-zA-Z]+$/", $text)) { |
|
65 | + return preg_match('/[a-z]/', $text) && preg_match('/[A-Z]/', $text); |
|
66 | + } else { |
|
67 | + return false; |
|
68 | + } |
|
67 | 69 | } |
68 | 70 | |
69 | 71 | return preg_match('/[a-z]/', $text) && preg_match('/[A-Z]/', $text); |
@@ -71,39 +73,43 @@ discard block |
||
71 | 73 | |
72 | 74 | private function isAllUpper(string $text) : bool |
73 | 75 | { |
74 | - if ($this->strictCheck) |
|
75 | - return ctype_upper($text); |
|
76 | - else |
|
77 | - return !preg_match('/[a-z]/', $text) && preg_match('/[A-Z]/', $text); |
|
76 | + if ($this->strictCheck) { |
|
77 | + return ctype_upper($text); |
|
78 | + } else { |
|
79 | + return !preg_match('/[a-z]/', $text) && preg_match('/[A-Z]/', $text); |
|
80 | + } |
|
78 | 81 | |
79 | 82 | } |
80 | 83 | |
81 | 84 | private function isAllLower(string $text) : bool |
82 | 85 | { |
83 | - if ($this->strictCheck) |
|
84 | - return ctype_lower($text); |
|
85 | - else |
|
86 | - return preg_match('/[a-z]/', $text) && !preg_match('/[A-Z]/', $text); |
|
86 | + if ($this->strictCheck) { |
|
87 | + return ctype_lower($text); |
|
88 | + } else { |
|
89 | + return preg_match('/[a-z]/', $text) && !preg_match('/[A-Z]/', $text); |
|
90 | + } |
|
87 | 91 | } |
88 | 92 | |
89 | 93 | private function isSomeLower(string $text) : bool |
90 | 94 | { |
91 | 95 | $containsLower = preg_match('/[a-z]/', $text); |
92 | 96 | |
93 | - if ($this->strictCheck) |
|
94 | - return !preg_match('/[\W]/', $text) && $containsLower; |
|
95 | - else |
|
96 | - return $containsLower; |
|
97 | + if ($this->strictCheck) { |
|
98 | + return !preg_match('/[\W]/', $text) && $containsLower; |
|
99 | + } else { |
|
100 | + return $containsLower; |
|
101 | + } |
|
97 | 102 | } |
98 | 103 | |
99 | 104 | private function isSomeUpper(string $text) : bool |
100 | 105 | { |
101 | 106 | $containsUpper = preg_match('/[A-Z]/', $text); |
102 | 107 | |
103 | - if ($this->strictCheck) |
|
104 | - return !preg_match('/[\W]/', $text) && $containsUpper; |
|
105 | - else |
|
106 | - return $containsUpper; |
|
108 | + if ($this->strictCheck) { |
|
109 | + return !preg_match('/[\W]/', $text) && $containsUpper; |
|
110 | + } else { |
|
111 | + return $containsUpper; |
|
112 | + } |
|
107 | 113 | } |
108 | 114 | |
109 | 115 | public function validate($data): Result |
@@ -128,10 +134,11 @@ discard block |
||
128 | 134 | break; |
129 | 135 | } |
130 | 136 | |
131 | - if ($isValid) |
|
132 | - return new Success(); |
|
133 | - else |
|
134 | - return new Failure(new RuleError(RuleErrorCode::CASING_MISMATCH, |
|
137 | + if ($isValid) { |
|
138 | + return new Success(); |
|
139 | + } else { |
|
140 | + return new Failure(new RuleError(RuleErrorCode::CASING_MISMATCH, |
|
135 | 141 | "The given string doesn't match the required case")); |
142 | + } |
|
136 | 143 | } |
137 | 144 | } |
138 | 145 | \ No newline at end of file |
@@ -19,13 +19,13 @@ |
||
19 | 19 | * Handy for username validations |
20 | 20 | * @var array $allowedSpecialChars |
21 | 21 | */ |
22 | - protected $allowedSpecialChars = []; |
|
22 | + protected $allowedSpecialChars = [ ]; |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * AlphaNumeric constructor. |
26 | 26 | * @param array $allowedSpecialChars |
27 | 27 | */ |
28 | - public function __construct($allowedSpecialChars = []) |
|
28 | + public function __construct($allowedSpecialChars = [ ]) |
|
29 | 29 | { |
30 | 30 | $this->allowedSpecialChars = $allowedSpecialChars; |
31 | 31 | } |
@@ -23,9 +23,10 @@ |
||
23 | 23 | { |
24 | 24 | public function validate($data): Result |
25 | 25 | { |
26 | - if (ctype_alpha(str_replace($this->allowedSpecialChars, '', $data))) |
|
27 | - return new Success(); |
|
28 | - else |
|
29 | - return new Failure(new RuleError(RuleErrorCode::NOT_ALPHA, 'String is not Alphabetic.')); |
|
26 | + if (ctype_alpha(str_replace($this->allowedSpecialChars, '', $data))) { |
|
27 | + return new Success(); |
|
28 | + } else { |
|
29 | + return new Failure(new RuleError(RuleErrorCode::NOT_ALPHA, 'String is not Alphabetic.')); |
|
30 | + } |
|
30 | 31 | } |
31 | 32 | } |
32 | 33 | \ No newline at end of file |
@@ -26,17 +26,17 @@ |
||
26 | 26 | */ |
27 | 27 | private $username; |
28 | 28 | |
29 | - private function getOption(int $key, $arr = [], $default) { |
|
30 | - return isset($arr[$key]) ? $arr[$key]: $default; |
|
29 | + private function getOption(int $key, $arr = [ ], $default) { |
|
30 | + return isset($arr[ $key ]) ? $arr[ $key ] : $default; |
|
31 | 31 | } |
32 | - public function __construct(string $username, $options = [], Validator $validator = null) |
|
32 | + public function __construct(string $username, $options = [ ], Validator $validator = null) |
|
33 | 33 | { |
34 | 34 | if ($validator == null) { |
35 | 35 | // use the default validator |
36 | 36 | $validator = new UsernameValidator( |
37 | 37 | $this->getOption(self::OPT_MIN_LEN, $options, 4), |
38 | 38 | $this->getOption(self::OPT_MAX_LEN, $options, 12), |
39 | - $this->getOption(self::OPT_ALLOWED_SPECIAL_CHARS, $options, ['-', '_'])); |
|
39 | + $this->getOption(self::OPT_ALLOWED_SPECIAL_CHARS, $options, [ '-', '_' ])); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | $result = $validator->validate($username, $options); |