@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | * |
| 22 | 22 | * @param DB $db |
| 23 | 23 | */ |
| 24 | - protected function __construct (DB $db) { |
|
| 24 | + protected function __construct(DB $db) { |
|
| 25 | 25 | $this->db = $db; |
| 26 | 26 | } |
| 27 | 27 | |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | * |
| 31 | 31 | * @return string |
| 32 | 32 | */ |
| 33 | - public function __toString () { |
|
| 33 | + public function __toString() { |
|
| 34 | 34 | return $this->queryString; |
| 35 | 35 | } |
| 36 | 36 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | * @return $this |
| 45 | 45 | * @throws ArgumentCountError |
| 46 | 46 | */ |
| 47 | - public function execute ($args = null) { |
|
| 47 | + public function execute($args = null) { |
|
| 48 | 48 | $this->db->getLogger()->__invoke($this->queryString); |
| 49 | 49 | if (!parent::execute($args)) { |
| 50 | 50 | $info = $this->errorInfo(); |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | * |
| 62 | 62 | * @return int |
| 63 | 63 | */ |
| 64 | - public function getId (): int { |
|
| 64 | + public function getId(): int { |
|
| 65 | 65 | return (int)$this->db->lastInsertId(); |
| 66 | 66 | } |
| 67 | 67 | } |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | * @param string $name |
| 31 | 31 | * @param string[] $columns |
| 32 | 32 | */ |
| 33 | - public function __construct (DB $db, $name, array $columns) { |
|
| 33 | + public function __construct(DB $db, $name, array $columns) { |
|
| 34 | 34 | parent::__construct($db); |
| 35 | 35 | $this->name = $name; |
| 36 | 36 | foreach ($columns as $column) { |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | * |
| 44 | 44 | * @return string |
| 45 | 45 | */ |
| 46 | - final public function __toString (): string { |
|
| 46 | + final public function __toString(): string { |
|
| 47 | 47 | return $this->name; |
| 48 | 48 | } |
| 49 | 49 | |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | * @param array $match |
| 56 | 56 | * @return int Rows affected. |
| 57 | 57 | */ |
| 58 | - public function delete (array $match): int { |
|
| 58 | + public function delete(array $match): int { |
|
| 59 | 59 | $match = SQL::all((array)$this->db->match($match)); |
| 60 | 60 | return $this->db->exec("DELETE FROM {$this} WHERE {$match}"); |
| 61 | 61 | } |
@@ -63,14 +63,14 @@ discard block |
||
| 63 | 63 | /** |
| 64 | 64 | * @return Column[] |
| 65 | 65 | */ |
| 66 | - final public function getColumns (): array { |
|
| 66 | + final public function getColumns(): array { |
|
| 67 | 67 | return $this->columns; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | /** |
| 71 | 71 | * @return string |
| 72 | 72 | */ |
| 73 | - final public function getName (): string { |
|
| 73 | + final public function getName(): string { |
|
| 74 | 74 | return $this->name; |
| 75 | 75 | } |
| 76 | 76 | |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | * @param array $values |
| 81 | 81 | * @return Statement |
| 82 | 82 | */ |
| 83 | - public function insert (array $values): Statement { |
|
| 83 | + public function insert(array $values): Statement { |
|
| 84 | 84 | $columns = implode(',', array_keys($values)); |
| 85 | 85 | $values = implode(',', (array)$this->db->quote($values)); |
| 86 | 86 | return $this->db->query("INSERT INTO {$this} ($columns) VALUES ($values)"); |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | * @param string $name |
| 91 | 91 | * @return bool |
| 92 | 92 | */ |
| 93 | - public function offsetExists ($name): bool { |
|
| 93 | + public function offsetExists($name): bool { |
|
| 94 | 94 | return isset($this->columns[$name]); |
| 95 | 95 | } |
| 96 | 96 | |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | * @param string $name |
| 99 | 99 | * @return Column |
| 100 | 100 | */ |
| 101 | - public function offsetGet ($name): Column { |
|
| 101 | + public function offsetGet($name): Column { |
|
| 102 | 102 | return $this->columns[$name]; |
| 103 | 103 | } |
| 104 | 104 | |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | * @param string[] $columns Defaults to all columns. |
| 109 | 109 | * @return Select |
| 110 | 110 | */ |
| 111 | - public function select (array $columns = []): Select { |
|
| 111 | + public function select(array $columns = []): Select { |
|
| 112 | 112 | if (!$columns) { |
| 113 | 113 | $columns = $this->columns; |
| 114 | 114 | } |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | * @param string $name |
| 122 | 122 | * @return Table |
| 123 | 123 | */ |
| 124 | - public function setName (string $name) { |
|
| 124 | + public function setName(string $name) { |
|
| 125 | 125 | $clone = clone $this; |
| 126 | 126 | $clone->name = $name; |
| 127 | 127 | foreach ($this->columns as $name => $column) { |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | * @param array $match |
| 140 | 140 | * @return int Rows affected. |
| 141 | 141 | */ |
| 142 | - public function update (array $values, array $match): int { |
|
| 142 | + public function update(array $values, array $match): int { |
|
| 143 | 143 | $values = implode(', ', (array)SQL::isEqual($this->db->quote($values))); |
| 144 | 144 | $match = SQL::all((array)$this->db->match($match)); |
| 145 | 145 | return $this->db->exec("UPDATE {$this} SET {$values} WHERE {$match}"); |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | * @param string $name |
| 35 | 35 | * @param string $qualifier |
| 36 | 36 | */ |
| 37 | - public function __construct (DB $db, string $name, string $qualifier = '') { |
|
| 37 | + public function __construct(DB $db, string $name, string $qualifier = '') { |
|
| 38 | 38 | parent::__construct($db); |
| 39 | 39 | $this->name = $name; |
| 40 | 40 | $this->qualifier = $qualifier; |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | * @param array $arguments |
| 51 | 51 | * @return ExpressionInterface |
| 52 | 52 | */ |
| 53 | - public function __call (string $name, array $arguments): ExpressionInterface { |
|
| 53 | + public function __call(string $name, array $arguments): ExpressionInterface { |
|
| 54 | 54 | array_push($arguments, $this); |
| 55 | 55 | return Expression::__callStatic($name, $arguments); |
| 56 | 56 | } |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | * |
| 61 | 61 | * @return string |
| 62 | 62 | */ |
| 63 | - public function __toString (): string { |
|
| 63 | + public function __toString(): string { |
|
| 64 | 64 | if (strlen($this->qualifier)) { |
| 65 | 65 | return "{$this->qualifier}.{$this->name}"; |
| 66 | 66 | } |
@@ -70,14 +70,14 @@ discard block |
||
| 70 | 70 | /** |
| 71 | 71 | * @return string |
| 72 | 72 | */ |
| 73 | - final public function getName (): string { |
|
| 73 | + final public function getName(): string { |
|
| 74 | 74 | return $this->name; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | /** |
| 78 | 78 | * @return string |
| 79 | 79 | */ |
| 80 | - final public function getQualifier (): string { |
|
| 80 | + final public function getQualifier(): string { |
|
| 81 | 81 | return $this->qualifier; |
| 82 | 82 | } |
| 83 | 83 | |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | * @param null|bool|string|Select $arg |
| 91 | 91 | * @return string |
| 92 | 92 | */ |
| 93 | - public function is ($arg): string { |
|
| 93 | + public function is($arg): string { |
|
| 94 | 94 | if ($arg === null or is_bool($arg)) { |
| 95 | 95 | $arg = ['' => 'NULL', 1 => 'TRUE', 0 => 'FALSE'][$arg]; |
| 96 | 96 | } |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | * @param string|array|Select $arg |
| 108 | 108 | * @return string |
| 109 | 109 | */ |
| 110 | - public function isEqual ($arg): string { |
|
| 110 | + public function isEqual($arg): string { |
|
| 111 | 111 | return SQL::isEqual($this, $this->db->quote($arg)); |
| 112 | 112 | } |
| 113 | 113 | |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | * @param string|Select $arg |
| 118 | 118 | * @return string |
| 119 | 119 | */ |
| 120 | - public function isGreater ($arg): string { |
|
| 120 | + public function isGreater($arg): string { |
|
| 121 | 121 | return SQL::isGreater($this, $this->db->quote($arg)); |
| 122 | 122 | } |
| 123 | 123 | |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | * @param string|Select $arg |
| 128 | 128 | * @return string |
| 129 | 129 | */ |
| 130 | - public function isGreaterOrEqual ($arg): string { |
|
| 130 | + public function isGreaterOrEqual($arg): string { |
|
| 131 | 131 | return SQL::isGreaterOrEqual($this, $this->db->quote($arg)); |
| 132 | 132 | } |
| 133 | 133 | |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | * @param string|Select $arg |
| 138 | 138 | * @return string |
| 139 | 139 | */ |
| 140 | - public function isLess ($arg): string { |
|
| 140 | + public function isLess($arg): string { |
|
| 141 | 141 | return SQL::isLess($this, $this->db->quote($arg)); |
| 142 | 142 | } |
| 143 | 143 | |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | * @param string|Select $arg |
| 148 | 148 | * @return string |
| 149 | 149 | */ |
| 150 | - public function isLessOrEqual ($arg): string { |
|
| 150 | + public function isLessOrEqual($arg): string { |
|
| 151 | 151 | return SQL::isLessOrEqual($this, $this->db->quote($arg)); |
| 152 | 152 | } |
| 153 | 153 | |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | * @param string $pattern |
| 158 | 158 | * @return string |
| 159 | 159 | */ |
| 160 | - public function isLike (string $pattern): string { |
|
| 160 | + public function isLike(string $pattern): string { |
|
| 161 | 161 | return SQL::isLike($this, (string)$this->db->quote($pattern)); |
| 162 | 162 | } |
| 163 | 163 | |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | * @param null|bool|string|Select $arg |
| 170 | 170 | * @return string |
| 171 | 171 | */ |
| 172 | - public function isNot ($arg): string { |
|
| 172 | + public function isNot($arg): string { |
|
| 173 | 173 | return SQL::not($this->is($arg)); |
| 174 | 174 | } |
| 175 | 175 | |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | * @param string|array|Select $arg |
| 180 | 180 | * @return string |
| 181 | 181 | */ |
| 182 | - public function isNotEqual ($arg): string { |
|
| 182 | + public function isNotEqual($arg): string { |
|
| 183 | 183 | return SQL::isNotEqual($this, $this->db->quote($arg)); |
| 184 | 184 | } |
| 185 | 185 | |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | * @param string $pattern |
| 190 | 190 | * @return string |
| 191 | 191 | */ |
| 192 | - public function isNotLike (string $pattern): string { |
|
| 192 | + public function isNotLike(string $pattern): string { |
|
| 193 | 193 | return SQL::isNotLike($this, (string)$this->db->quote($pattern)); |
| 194 | 194 | } |
| 195 | 195 | |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | * |
| 199 | 199 | * @return string |
| 200 | 200 | */ |
| 201 | - public function isNotNull (): string { |
|
| 201 | + public function isNotNull(): string { |
|
| 202 | 202 | return SQL::isNotNull($this); |
| 203 | 203 | } |
| 204 | 204 | |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | * @param string $pattern |
| 209 | 209 | * @return string |
| 210 | 210 | */ |
| 211 | - public function isNotRegExp (string $pattern): string { |
|
| 211 | + public function isNotRegExp(string $pattern): string { |
|
| 212 | 212 | return SQL::isNotRegExp($this, (string)$this->db->quote($pattern)); |
| 213 | 213 | } |
| 214 | 214 | |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | * @param string $pattern |
| 219 | 219 | * @return string |
| 220 | 220 | */ |
| 221 | - public function isRegExp (string $pattern): string { |
|
| 221 | + public function isRegExp(string $pattern): string { |
|
| 222 | 222 | return SQL::isRegExp($this, (string)$this->db->quote($pattern)); |
| 223 | 223 | } |
| 224 | 224 | |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | * @param string $name |
| 227 | 227 | * @return $this |
| 228 | 228 | */ |
| 229 | - public function setName (string $name) { |
|
| 229 | + public function setName(string $name) { |
|
| 230 | 230 | $clone = clone $this; |
| 231 | 231 | $clone->name = $name; |
| 232 | 232 | return $clone; |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | * @param string $qualifier |
| 237 | 237 | * @return $this |
| 238 | 238 | */ |
| 239 | - public function setQualifier (string $qualifier) { |
|
| 239 | + public function setQualifier(string $qualifier) { |
|
| 240 | 240 | $clone = clone $this; |
| 241 | 241 | $clone->qualifier = $qualifier; |
| 242 | 242 | return $clone; |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | * @param string $passwd |
| 47 | 47 | * @param array $options |
| 48 | 48 | */ |
| 49 | - public function __construct ($dsn, $username = null, $passwd = null, $options = null) { |
|
| 49 | + public function __construct($dsn, $username = null, $passwd = null, $options = null) { |
|
| 50 | 50 | /** @scrutinizer ignore-call */ |
| 51 | 51 | parent::__construct(...func_get_args()); |
| 52 | 52 | $this->setAttribute(self::ATTR_DEFAULT_FETCH_MODE, self::FETCH_ASSOC); |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | * @param string $sql |
| 64 | 64 | * @return int |
| 65 | 65 | */ |
| 66 | - public function exec ($sql): int { |
|
| 66 | + public function exec($sql): int { |
|
| 67 | 67 | $this->logger->__invoke($sql); |
| 68 | 68 | return parent::exec($sql); |
| 69 | 69 | } |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | * |
| 74 | 74 | * @return string |
| 75 | 75 | */ |
| 76 | - final public function getDriver (): string { |
|
| 76 | + final public function getDriver(): string { |
|
| 77 | 77 | return $this->getAttribute(self::ATTR_DRIVER_NAME); |
| 78 | 78 | } |
| 79 | 79 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | * @param string $interface |
| 84 | 84 | * @return Junction |
| 85 | 85 | */ |
| 86 | - public function getJunction ($interface): Junction { |
|
| 86 | + public function getJunction($interface): Junction { |
|
| 87 | 87 | if (!isset($this->junctions[$interface])) { |
| 88 | 88 | $this->junctions[$interface] = new Junction($this, $interface); |
| 89 | 89 | } |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | /** |
| 94 | 94 | * @return Closure |
| 95 | 95 | */ |
| 96 | - public function getLogger (): Closure { |
|
| 96 | + public function getLogger(): Closure { |
|
| 97 | 97 | return $this->logger; |
| 98 | 98 | } |
| 99 | 99 | |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | * @param string|EntityInterface $class |
| 104 | 104 | * @return Record |
| 105 | 105 | */ |
| 106 | - public function getRecord ($class): Record { |
|
| 106 | + public function getRecord($class): Record { |
|
| 107 | 107 | if (is_object($class)) { |
| 108 | 108 | $class = get_class($class); |
| 109 | 109 | } |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | * @param string|array|Select|Closure $b |
| 136 | 136 | * @return string|string[] Same type as `$a`, keys are not preserved. |
| 137 | 137 | */ |
| 138 | - public function match ($a, $b = null) { |
|
| 138 | + public function match($a, $b = null) { |
|
| 139 | 139 | if (is_array($a)) { |
| 140 | 140 | return array_map([$this, __FUNCTION__], array_keys($a), $a); |
| 141 | 141 | } |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | * @param string $access Class or interface name. |
| 153 | 153 | * @return bool |
| 154 | 154 | */ |
| 155 | - public function offsetExists ($access): bool { |
|
| 155 | + public function offsetExists($access): bool { |
|
| 156 | 156 | return (bool)$this->offsetGet($access); |
| 157 | 157 | } |
| 158 | 158 | |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | * @param string $access Class or interface name. |
| 161 | 161 | * @return Record|Junction|null |
| 162 | 162 | */ |
| 163 | - public function offsetGet ($access) { |
|
| 163 | + public function offsetGet($access) { |
|
| 164 | 164 | if (class_exists($access)) { |
| 165 | 165 | return $this->getRecord($access); |
| 166 | 166 | } |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | * @param void $value |
| 178 | 178 | * @throws Exception |
| 179 | 179 | */ |
| 180 | - final public function offsetSet ($access, $value): void { |
|
| 180 | + final public function offsetSet($access, $value): void { |
|
| 181 | 181 | throw new Exception('The schema is immutable.'); |
| 182 | 182 | } |
| 183 | 183 | |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | * @param void $access |
| 188 | 188 | * @throws Exception |
| 189 | 189 | */ |
| 190 | - final public function offsetUnset ($access): void { |
|
| 190 | + final public function offsetUnset($access): void { |
|
| 191 | 191 | $this->offsetSet($access, null); |
| 192 | 192 | } |
| 193 | 193 | |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | * @param array $options |
| 199 | 199 | * @return Statement |
| 200 | 200 | */ |
| 201 | - public function prepare ($sql, $options = null): Statement { |
|
| 201 | + public function prepare($sql, $options = null): Statement { |
|
| 202 | 202 | $this->logger->__invoke($sql); |
| 203 | 203 | /** @var Statement $statement */ |
| 204 | 204 | /** @scrutinizer ignore-call */ |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | * @param array $ctorargs |
| 216 | 216 | * @return Statement |
| 217 | 217 | */ |
| 218 | - public function query ($sql, $mode = PDO::ATTR_DEFAULT_FETCH_MODE, $arg3 = null, array $ctorargs = []): Statement { |
|
| 218 | + public function query($sql, $mode = PDO::ATTR_DEFAULT_FETCH_MODE, $arg3 = null, array $ctorargs = []): Statement { |
|
| 219 | 219 | $this->logger->__invoke($sql); |
| 220 | 220 | /** @var Statement $statement */ |
| 221 | 221 | /** @scrutinizer ignore-call */ |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | * @param int $type Ignored. |
| 237 | 237 | * @return mixed |
| 238 | 238 | */ |
| 239 | - public function quote ($value, $type = null) { |
|
| 239 | + public function quote($value, $type = null) { |
|
| 240 | 240 | if ($value instanceof ExpressionInterface) { |
| 241 | 241 | return $value; |
| 242 | 242 | } |
@@ -258,7 +258,7 @@ discard block |
||
| 258 | 258 | * @param EntityInterface $entity |
| 259 | 259 | * @return int ID |
| 260 | 260 | */ |
| 261 | - public function save (EntityInterface $entity): int { |
|
| 261 | + public function save(EntityInterface $entity): int { |
|
| 262 | 262 | return $this->getRecord($entity)->save($entity); |
| 263 | 263 | } |
| 264 | 264 | |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | * @param Closure $logger |
| 267 | 267 | * @return $this |
| 268 | 268 | */ |
| 269 | - public function setLogger (Closure $logger) { |
|
| 269 | + public function setLogger(Closure $logger) { |
|
| 270 | 270 | $this->logger = $logger; |
| 271 | 271 | return $this; |
| 272 | 272 | } |