@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | * @return Predicate |
| 26 | 26 | * @internal |
| 27 | 27 | */ |
| 28 | - protected function _isRelational ($arg, string $oper, string $multi) { |
|
| 28 | + protected function _isRelational($arg, string $oper, string $multi) { |
|
| 29 | 29 | static $inverse = [ |
| 30 | 30 | '<' => '>=', |
| 31 | 31 | '<=' => '>', |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | * @param null|scalar|Select $arg |
| 55 | 55 | * @return Predicate |
| 56 | 56 | */ |
| 57 | - public function is ($arg): Predicate { |
|
| 57 | + public function is($arg): Predicate { |
|
| 58 | 58 | if ($arg instanceof Select) { |
| 59 | 59 | if ($this->db->isSQLite()) { |
| 60 | 60 | return Select::factory($this->db, $arg, [$arg[0]]) |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | * @param number $max |
| 83 | 83 | * @return Predicate |
| 84 | 84 | */ |
| 85 | - public function isBetween ($min, $max) { |
|
| 85 | + public function isBetween($min, $max) { |
|
| 86 | 86 | $min = $this->db->quote($min); |
| 87 | 87 | $max = $this->db->quote($max); |
| 88 | 88 | return Predicate::factory($this->db, "{$this} BETWEEN {$min} AND {$max}"); |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * @param scalar|array|Select $arg |
| 95 | 95 | * @return Predicate |
| 96 | 96 | */ |
| 97 | - public function isEqual ($arg) { |
|
| 97 | + public function isEqual($arg) { |
|
| 98 | 98 | return $this->db->match($this, $arg); |
| 99 | 99 | } |
| 100 | 100 | |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | * |
| 104 | 104 | * @return Predicate |
| 105 | 105 | */ |
| 106 | - public function isFalse () { |
|
| 106 | + public function isFalse() { |
|
| 107 | 107 | return Predicate::factory($this->db, "{$this} IS FALSE"); |
| 108 | 108 | } |
| 109 | 109 | |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | * @param number|string|Select $arg |
| 114 | 114 | * @return Predicate |
| 115 | 115 | */ |
| 116 | - public function isGt ($arg) { |
|
| 116 | + public function isGt($arg) { |
|
| 117 | 117 | return $this->_isRelational($arg, '>', 'ALL'); |
| 118 | 118 | } |
| 119 | 119 | |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | * @param Select $select |
| 124 | 124 | * @return Predicate |
| 125 | 125 | */ |
| 126 | - public function isGtAny (Select $select) { |
|
| 126 | + public function isGtAny(Select $select) { |
|
| 127 | 127 | return $this->_isRelational($select, '>', 'ANY'); |
| 128 | 128 | } |
| 129 | 129 | |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | * @param number|string|Select $arg |
| 134 | 134 | * @return Predicate |
| 135 | 135 | */ |
| 136 | - public function isGte ($arg) { |
|
| 136 | + public function isGte($arg) { |
|
| 137 | 137 | return $this->_isRelational($arg, '>=', 'ALL'); |
| 138 | 138 | } |
| 139 | 139 | |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | * @param Select $select |
| 144 | 144 | * @return Predicate |
| 145 | 145 | */ |
| 146 | - public function isGteAny (Select $select) { |
|
| 146 | + public function isGteAny(Select $select) { |
|
| 147 | 147 | return $this->_isRelational($select, '>=', 'ANY'); |
| 148 | 148 | } |
| 149 | 149 | |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | * @param string $pattern |
| 154 | 154 | * @return Predicate |
| 155 | 155 | */ |
| 156 | - public function isLike (string $pattern) { |
|
| 156 | + public function isLike(string $pattern) { |
|
| 157 | 157 | $pattern = $this->db->quote($pattern); |
| 158 | 158 | return Predicate::factory($this->db, "{$this} LIKE {$pattern}"); |
| 159 | 159 | } |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | * @param number|string|Select $arg |
| 165 | 165 | * @return Predicate |
| 166 | 166 | */ |
| 167 | - public function isLt ($arg) { |
|
| 167 | + public function isLt($arg) { |
|
| 168 | 168 | return $this->_isRelational($arg, '<', 'ALL'); |
| 169 | 169 | } |
| 170 | 170 | |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | * @param Select $select |
| 175 | 175 | * @return Predicate |
| 176 | 176 | */ |
| 177 | - public function isLtAny (Select $select) { |
|
| 177 | + public function isLtAny(Select $select) { |
|
| 178 | 178 | return $this->_isRelational($select, '<', 'ANY'); |
| 179 | 179 | } |
| 180 | 180 | |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | * @param number|string|Select $arg |
| 185 | 185 | * @return Predicate |
| 186 | 186 | */ |
| 187 | - public function isLte ($arg) { |
|
| 187 | + public function isLte($arg) { |
|
| 188 | 188 | return $this->_isRelational($arg, '<=', 'ALL'); |
| 189 | 189 | } |
| 190 | 190 | |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | * @param Select $select |
| 195 | 195 | * @return Predicate |
| 196 | 196 | */ |
| 197 | - public function isLteAny (Select $select) { |
|
| 197 | + public function isLteAny(Select $select) { |
|
| 198 | 198 | return $this->_isRelational($select, '<=', 'ANY'); |
| 199 | 199 | } |
| 200 | 200 | |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | * @param null|scalar|Select $arg |
| 205 | 205 | * @return Predicate |
| 206 | 206 | */ |
| 207 | - public function isNot ($arg) { |
|
| 207 | + public function isNot($arg) { |
|
| 208 | 208 | return $this->is($arg)->not(); |
| 209 | 209 | } |
| 210 | 210 | |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | * @param number $max |
| 216 | 216 | * @return Predicate |
| 217 | 217 | */ |
| 218 | - public function isNotBetween ($min, $max) { |
|
| 218 | + public function isNotBetween($min, $max) { |
|
| 219 | 219 | $min = $this->db->quote($min); |
| 220 | 220 | $max = $this->db->quote($max); |
| 221 | 221 | return Predicate::factory($this->db, "{$this} NOT BETWEEN {$min} AND {$max}"); |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | * @param scalar|array|Select $arg |
| 228 | 228 | * @return Predicate |
| 229 | 229 | */ |
| 230 | - public function isNotEqual ($arg) { |
|
| 230 | + public function isNotEqual($arg) { |
|
| 231 | 231 | if ($arg instanceof Select) { |
| 232 | 232 | return Predicate::factory($this->db, "{$this} NOT IN ({$arg->toSql()})"); |
| 233 | 233 | } |
@@ -243,7 +243,7 @@ discard block |
||
| 243 | 243 | * @param string $pattern |
| 244 | 244 | * @return Predicate |
| 245 | 245 | */ |
| 246 | - public function isNotLike (string $pattern) { |
|
| 246 | + public function isNotLike(string $pattern) { |
|
| 247 | 247 | $pattern = $this->db->quote($pattern); |
| 248 | 248 | return Predicate::factory($this->db, "{$this} NOT LIKE {$pattern}"); |
| 249 | 249 | } |
@@ -253,7 +253,7 @@ discard block |
||
| 253 | 253 | * |
| 254 | 254 | * @return Predicate |
| 255 | 255 | */ |
| 256 | - public function isNotNull () { |
|
| 256 | + public function isNotNull() { |
|
| 257 | 257 | return Predicate::factory($this->db, "{$this} IS NOT NULL"); |
| 258 | 258 | } |
| 259 | 259 | |
@@ -263,7 +263,7 @@ discard block |
||
| 263 | 263 | * @param string $pattern |
| 264 | 264 | * @return Predicate |
| 265 | 265 | */ |
| 266 | - public function isNotRegExp (string $pattern) { |
|
| 266 | + public function isNotRegExp(string $pattern) { |
|
| 267 | 267 | $pattern = $this->db->quote($pattern); |
| 268 | 268 | return Predicate::factory($this->db, "{$this} NOT REGEXP {$pattern}"); |
| 269 | 269 | } |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | * |
| 274 | 274 | * @return Predicate |
| 275 | 275 | */ |
| 276 | - public function isNull () { |
|
| 276 | + public function isNull() { |
|
| 277 | 277 | return Predicate::factory($this->db, "{$this} IS NULL"); |
| 278 | 278 | } |
| 279 | 279 | |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | * @param string $pattern |
| 284 | 284 | * @return Predicate |
| 285 | 285 | */ |
| 286 | - public function isRegExp (string $pattern) { |
|
| 286 | + public function isRegExp(string $pattern) { |
|
| 287 | 287 | $pattern = $this->db->quote($pattern); |
| 288 | 288 | return Predicate::factory($this->db, "{$this} REGEXP {$pattern}"); |
| 289 | 289 | } |