@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | * @param DB $db |
| 15 | 15 | * @param $name |
| 16 | 16 | */ |
| 17 | - public function __construct (DB $db, $name) { |
|
| 17 | + public function __construct(DB $db, $name) { |
|
| 18 | 18 | parent::__construct($db, $name, ['entity', 'attribute', 'value']); |
| 19 | 19 | } |
| 20 | 20 | |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | * @param string $attribute |
| 26 | 26 | * @return bool |
| 27 | 27 | */ |
| 28 | - public function exists (int $id, string $attribute): bool { |
|
| 28 | + public function exists(int $id, string $attribute): bool { |
|
| 29 | 29 | $exists = $this->cache(__FUNCTION__, function() { |
| 30 | 30 | $select = $this->select(['COUNT(*) > 0']); |
| 31 | 31 | $select->where('entity = ? AND attribute = ?'); |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | * @param array $match `[attribute => value]`. If empty, selects all IDs for entities having at least one attribute. |
| 44 | 44 | * @return Select |
| 45 | 45 | */ |
| 46 | - public function find (array $match) { |
|
| 46 | + public function find(array $match) { |
|
| 47 | 47 | $select = $this->select([$this['entity']]); |
| 48 | 48 | $prior = $this; |
| 49 | 49 | foreach ($match as $attribute => $value) { |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | * @param int $id |
| 66 | 66 | * @return array `[attribute => value]` |
| 67 | 67 | */ |
| 68 | - public function load (int $id): array { |
|
| 68 | + public function load(int $id): array { |
|
| 69 | 69 | $load = $this->cache(__FUNCTION__, function() { |
| 70 | 70 | $select = $this->select(['attribute', 'value']); |
| 71 | 71 | $select->where('entity = ?'); |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | * @param int[] $ids |
| 82 | 82 | * @return array[] `[id => attribute => value] |
| 83 | 83 | */ |
| 84 | - public function loadAll (array $ids): array { |
|
| 84 | + public function loadAll(array $ids): array { |
|
| 85 | 85 | if (empty($ids)) { |
| 86 | 86 | return []; |
| 87 | 87 | } |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | * @param array $values `[attribute => value]` |
| 107 | 107 | * @return $this |
| 108 | 108 | */ |
| 109 | - public function save (int $id, array $values) { |
|
| 109 | + public function save(int $id, array $values) { |
|
| 110 | 110 | $this->delete([ |
| 111 | 111 | $this['entity']->isEqual($id), |
| 112 | 112 | $this['attribute']->isNotEqual(array_keys($values)) |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | * @param string $interface |
| 30 | 30 | * @return Junction |
| 31 | 31 | */ |
| 32 | - public static function fromInterface (DB $db, string $interface) { |
|
| 32 | + public static function fromInterface(DB $db, string $interface) { |
|
| 33 | 33 | try { |
| 34 | 34 | $ref = new ReflectionClass($interface); |
| 35 | 35 | } |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | * @param string $table |
| 53 | 53 | * @param Record[] $records |
| 54 | 54 | */ |
| 55 | - public function __construct (DB $db, string $table, array $records) { |
|
| 55 | + public function __construct(DB $db, string $table, array $records) { |
|
| 56 | 56 | parent::__construct($db, $table, array_keys($records)); |
| 57 | 57 | $this->records = $records; |
| 58 | 58 | } |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | * @param array $match |
| 67 | 67 | * @return Select |
| 68 | 68 | */ |
| 69 | - public function getCollection (string $key, array $match = []) { |
|
| 69 | + public function getCollection(string $key, array $match = []) { |
|
| 70 | 70 | $record = $this->records[$key]; |
| 71 | 71 | $select = $record->select(); |
| 72 | 72 | $select->join($this, $this[$key]->isEqual($record['id'])); |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | * @param int[] $ids Keyed by column. |
| 83 | 83 | * @return int Rows affected. |
| 84 | 84 | */ |
| 85 | - public function link (array $ids): int { |
|
| 85 | + public function link(array $ids): int { |
|
| 86 | 86 | $link = $this->cache(__FUNCTION__, function() { |
| 87 | 87 | $columns = implode(',', array_keys($this->columns)); |
| 88 | 88 | $slots = implode(',', SQL::slots(array_keys($this->columns))); |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | * |
| 20 | 20 | * @return Numeric |
| 21 | 21 | */ |
| 22 | - public function abs () { |
|
| 22 | + public function abs() { |
|
| 23 | 23 | return new Numeric($this->db, "ABS({$this})"); |
| 24 | 24 | } |
| 25 | 25 | |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | * @param number|ExpressionInterface $arg |
| 30 | 30 | * @return Numeric |
| 31 | 31 | */ |
| 32 | - public function add ($arg) { |
|
| 32 | + public function add($arg) { |
|
| 33 | 33 | return new Numeric($this->db, "({$this} + {$arg})"); |
| 34 | 34 | } |
| 35 | 35 | |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | * |
| 39 | 39 | * @return Numeric |
| 40 | 40 | */ |
| 41 | - public function ceil () { |
|
| 41 | + public function ceil() { |
|
| 42 | 42 | return new Numeric($this->db, "CEIL({$this})"); |
| 43 | 43 | } |
| 44 | 44 | |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | * @param number|ExpressionInterface $arg |
| 49 | 49 | * @return Numeric |
| 50 | 50 | */ |
| 51 | - public function divide ($arg) { |
|
| 51 | + public function divide($arg) { |
|
| 52 | 52 | return new Numeric($this->db, "({$this} / {$arg})"); |
| 53 | 53 | } |
| 54 | 54 | |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | * |
| 58 | 58 | * @return Numeric |
| 59 | 59 | */ |
| 60 | - public function floor () { |
|
| 60 | + public function floor() { |
|
| 61 | 61 | return new Numeric($this->db, "FLOOR({$this})"); |
| 62 | 62 | } |
| 63 | 63 | |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | * |
| 67 | 67 | * @return Predicate |
| 68 | 68 | */ |
| 69 | - public function isEven () { |
|
| 69 | + public function isEven() { |
|
| 70 | 70 | return new Predicate("({$this} % 2) = 0"); |
| 71 | 71 | } |
| 72 | 72 | |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | * |
| 76 | 76 | * @return Predicate |
| 77 | 77 | */ |
| 78 | - public function isNegative () { |
|
| 78 | + public function isNegative() { |
|
| 79 | 79 | return new Predicate("{$this} < 0"); |
| 80 | 80 | } |
| 81 | 81 | |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | * |
| 85 | 85 | * @return Predicate |
| 86 | 86 | */ |
| 87 | - public function isOdd () { |
|
| 87 | + public function isOdd() { |
|
| 88 | 88 | return new Predicate("({$this} % 2) <> 0"); |
| 89 | 89 | } |
| 90 | 90 | |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | * |
| 94 | 94 | * @return Predicate |
| 95 | 95 | */ |
| 96 | - public function isPositive () { |
|
| 96 | + public function isPositive() { |
|
| 97 | 97 | return new Predicate("{$this} > 0"); |
| 98 | 98 | } |
| 99 | 99 | |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | * @param number|ExpressionInterface $arg |
| 104 | 104 | * @return Numeric |
| 105 | 105 | */ |
| 106 | - public function modulo ($arg) { |
|
| 106 | + public function modulo($arg) { |
|
| 107 | 107 | return new Numeric($this->db, "({$this} % {$arg})"); |
| 108 | 108 | } |
| 109 | 109 | |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | * @param number|ExpressionInterface $arg |
| 114 | 114 | * @return Numeric |
| 115 | 115 | */ |
| 116 | - public function multiply ($arg) { |
|
| 116 | + public function multiply($arg) { |
|
| 117 | 117 | return new Numeric($this->db, "({$this} * {$arg})"); |
| 118 | 118 | } |
| 119 | 119 | |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | * @param number|ExpressionInterface $exponent |
| 124 | 124 | * @return Numeric |
| 125 | 125 | */ |
| 126 | - public function pow ($exponent) { |
|
| 126 | + public function pow($exponent) { |
|
| 127 | 127 | return new Numeric($this->db, "POW({$this},{$exponent})"); |
| 128 | 128 | } |
| 129 | 129 | |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | * @param int $decimals |
| 134 | 134 | * @return Numeric |
| 135 | 135 | */ |
| 136 | - public function round (int $decimals = 0) { |
|
| 136 | + public function round(int $decimals = 0) { |
|
| 137 | 137 | return new Numeric($this->db, "ROUND({$this},{$decimals})"); |
| 138 | 138 | } |
| 139 | 139 | |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | * @param number|ExpressionInterface $arg |
| 144 | 144 | * @return Numeric |
| 145 | 145 | */ |
| 146 | - public function subtract ($arg) { |
|
| 146 | + public function subtract($arg) { |
|
| 147 | 147 | return new Numeric($this->db, "({$this} - {$arg})"); |
| 148 | 148 | } |
| 149 | 149 | } |
| 150 | 150 | \ No newline at end of file |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | * @param string $name |
| 40 | 40 | * @param string[] $columns |
| 41 | 41 | */ |
| 42 | - public function __construct (DB $db, $name, array $columns) { |
|
| 42 | + public function __construct(DB $db, $name, array $columns) { |
|
| 43 | 43 | parent::__construct($db); |
| 44 | 44 | $this->name = $name; |
| 45 | 45 | foreach ($columns as $column) { |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | * |
| 53 | 53 | * @return string |
| 54 | 54 | */ |
| 55 | - final public function __toString () { |
|
| 55 | + final public function __toString() { |
|
| 56 | 56 | return $this->name; |
| 57 | 57 | } |
| 58 | 58 | |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | * @param array $values |
| 63 | 63 | * @return int Rows affected. |
| 64 | 64 | */ |
| 65 | - public function apply (array $values): int { |
|
| 65 | + public function apply(array $values): int { |
|
| 66 | 66 | $columns = implode(',', array_keys($values)); |
| 67 | 67 | $values = implode(', ', $this->db->quoteArray($values)); |
| 68 | 68 | if ($this->db->getDriver() === 'sqlite') { |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | * @param Closure $prepare `():Statement` |
| 79 | 79 | * @return Statement |
| 80 | 80 | */ |
| 81 | - protected function cache (string $key, Closure $prepare) { |
|
| 81 | + protected function cache(string $key, Closure $prepare) { |
|
| 82 | 82 | return $this->_cache[$key] ?? $this->_cache[$key] = $prepare->__invoke(); |
| 83 | 83 | } |
| 84 | 84 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | * @param array $match |
| 87 | 87 | * @return int |
| 88 | 88 | */ |
| 89 | - public function count (array $match = []) { |
|
| 89 | + public function count(array $match = []) { |
|
| 90 | 90 | $select = $this->select(['COUNT(*)']); |
| 91 | 91 | foreach ($this->db->matchArray($match) as $condition) { |
| 92 | 92 | $select->where($condition); |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | * @param array $match |
| 103 | 103 | * @return int Rows affected. |
| 104 | 104 | */ |
| 105 | - public function delete (array $match): int { |
|
| 105 | + public function delete(array $match): int { |
|
| 106 | 106 | $match = Predicate::all($this->db->matchArray($match)); |
| 107 | 107 | return $this->db->exec("DELETE FROM {$this} WHERE {$match}"); |
| 108 | 108 | } |
@@ -110,14 +110,14 @@ discard block |
||
| 110 | 110 | /** |
| 111 | 111 | * @return Column[] |
| 112 | 112 | */ |
| 113 | - final public function getColumns (): array { |
|
| 113 | + final public function getColumns(): array { |
|
| 114 | 114 | return $this->columns; |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | /** |
| 118 | 118 | * @return string |
| 119 | 119 | */ |
| 120 | - final public function getName (): string { |
|
| 120 | + final public function getName(): string { |
|
| 121 | 121 | return $this->name; |
| 122 | 122 | } |
| 123 | 123 | |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | * @param array $values |
| 128 | 128 | * @return Statement |
| 129 | 129 | */ |
| 130 | - public function insert (array $values) { |
|
| 130 | + public function insert(array $values) { |
|
| 131 | 131 | $columns = implode(',', array_keys($values)); |
| 132 | 132 | $values = implode(', ', $this->db->quoteArray($values)); |
| 133 | 133 | return $this->db->query("INSERT INTO {$this} ($columns) VALUES ($values)"); |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | * @param string $name |
| 138 | 138 | * @return bool |
| 139 | 139 | */ |
| 140 | - public function offsetExists ($name): bool { |
|
| 140 | + public function offsetExists($name): bool { |
|
| 141 | 141 | return isset($this->columns[$name]); |
| 142 | 142 | } |
| 143 | 143 | |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | * @param string $name |
| 146 | 146 | * @return Column |
| 147 | 147 | */ |
| 148 | - public function offsetGet ($name) { |
|
| 148 | + public function offsetGet($name) { |
|
| 149 | 149 | return $this->columns[$name]; |
| 150 | 150 | } |
| 151 | 151 | |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | * @param string[] $columns Defaults to all columns. |
| 156 | 156 | * @return Select |
| 157 | 157 | */ |
| 158 | - public function select (array $columns = []) { |
|
| 158 | + public function select(array $columns = []) { |
|
| 159 | 159 | if (!$columns) { |
| 160 | 160 | $columns = array_values($this->columns); |
| 161 | 161 | } |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | * @param string $name |
| 169 | 169 | * @return Table |
| 170 | 170 | */ |
| 171 | - public function setName (string $name) { |
|
| 171 | + public function setName(string $name) { |
|
| 172 | 172 | $clone = clone $this; |
| 173 | 173 | $clone->name = $name; |
| 174 | 174 | foreach ($this->columns as $name => $column) { |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | * @param array $match |
| 187 | 187 | * @return int Rows affected. |
| 188 | 188 | */ |
| 189 | - public function update (array $values, array $match): int { |
|
| 189 | + public function update(array $values, array $match): int { |
|
| 190 | 190 | $values = implode(', ', $this->db->matchArray($values)); |
| 191 | 191 | $match = Predicate::all($this->db->matchArray($match)); |
| 192 | 192 | return $this->db->exec("UPDATE {$this} SET {$values} WHERE {$match}"); |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | * @param string|Select $table |
| 74 | 74 | * @param string[] $columns |
| 75 | 75 | */ |
| 76 | - public function __construct (DB $db, $table, array $columns) { |
|
| 76 | + public function __construct(DB $db, $table, array $columns) { |
|
| 77 | 77 | parent::__construct($db); |
| 78 | 78 | if ($table instanceof Select) { |
| 79 | 79 | $table = $table->toSubquery(); |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | /** |
| 96 | 96 | * Gives the clone a new alias. |
| 97 | 97 | */ |
| 98 | - public function __clone () { |
|
| 98 | + public function __clone() { |
|
| 99 | 99 | $this->alias = uniqid('_') . "__{$this->table}"; |
| 100 | 100 | } |
| 101 | 101 | |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | * @param array $args |
| 104 | 104 | * @return Statement |
| 105 | 105 | */ |
| 106 | - public function __invoke (array $args = []) { |
|
| 106 | + public function __invoke(array $args = []) { |
|
| 107 | 107 | return $this->execute($args); |
| 108 | 108 | } |
| 109 | 109 | |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | * |
| 113 | 113 | * @return string |
| 114 | 114 | */ |
| 115 | - final public function __toString () { |
|
| 115 | + final public function __toString() { |
|
| 116 | 116 | return $this->alias; |
| 117 | 117 | } |
| 118 | 118 | |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | * @param array $args Execution arguments. |
| 123 | 123 | * @return int |
| 124 | 124 | */ |
| 125 | - public function count (array $args = []): int { |
|
| 125 | + public function count(array $args = []): int { |
|
| 126 | 126 | $clone = clone $this; |
| 127 | 127 | $clone->_columns = 'COUNT(*)'; |
| 128 | 128 | return (int)$clone->execute($args)->fetchColumn(); |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | * @param array $args |
| 135 | 135 | * @return Statement |
| 136 | 136 | */ |
| 137 | - public function execute (array $args = []) { |
|
| 137 | + public function execute(array $args = []) { |
|
| 138 | 138 | if (empty($args)) { |
| 139 | 139 | return $this->db->query($this->toSql()); |
| 140 | 140 | } |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | * @param array $args Execution arguments. |
| 150 | 150 | * @return array |
| 151 | 151 | */ |
| 152 | - public function fetchAll (array $args = []): array { |
|
| 152 | + public function fetchAll(array $args = []): array { |
|
| 153 | 153 | return iterator_to_array($this->fetcher->__invoke($this->execute($args))); |
| 154 | 154 | } |
| 155 | 155 | |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | * @param array $args Execution arguments. |
| 163 | 163 | * @return Generator |
| 164 | 164 | */ |
| 165 | - public function fetchEach (array $args = []) { |
|
| 165 | + public function fetchEach(array $args = []) { |
|
| 166 | 166 | yield from $this->fetcher->__invoke($this->execute($args)); |
| 167 | 167 | } |
| 168 | 168 | |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | * |
| 174 | 174 | * @return Generator |
| 175 | 175 | */ |
| 176 | - public function getIterator () { |
|
| 176 | + public function getIterator() { |
|
| 177 | 177 | yield from $this->fetchEach(); |
| 178 | 178 | } |
| 179 | 179 | |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | * @param string $column |
| 184 | 184 | * @return $this |
| 185 | 185 | */ |
| 186 | - public function group (string $column) { |
|
| 186 | + public function group(string $column) { |
|
| 187 | 187 | if (!strlen($this->_group)) { |
| 188 | 188 | $this->_group = " GROUP BY {$column}"; |
| 189 | 189 | } |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | * @param string $condition |
| 200 | 200 | * @return $this |
| 201 | 201 | */ |
| 202 | - public function having (string $condition) { |
|
| 202 | + public function having(string $condition) { |
|
| 203 | 203 | if (!strlen($this->_having)) { |
| 204 | 204 | $this->_having = " HAVING {$condition}"; |
| 205 | 205 | } |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | * @param string $type |
| 218 | 218 | * @return $this |
| 219 | 219 | */ |
| 220 | - public function join ($table, string $condition, string $type = 'INNER') { |
|
| 220 | + public function join($table, string $condition, string $type = 'INNER') { |
|
| 221 | 221 | if ($table instanceof Select) { |
| 222 | 222 | $table = $table->toSubquery(); |
| 223 | 223 | } |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | * @param int $offset |
| 233 | 233 | * @return $this |
| 234 | 234 | */ |
| 235 | - public function limit (int $limit, int $offset = 0) { |
|
| 235 | + public function limit(int $limit, int $offset = 0) { |
|
| 236 | 236 | if ($limit == 0) { |
| 237 | 237 | $this->_limit = ''; |
| 238 | 238 | } |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | * @param string $name Name or alias if used. |
| 252 | 252 | * @return bool |
| 253 | 253 | */ |
| 254 | - public function offsetExists ($name): bool { |
|
| 254 | + public function offsetExists($name): bool { |
|
| 255 | 255 | return true; |
| 256 | 256 | } |
| 257 | 257 | |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | * @param string $name Name, or alias if used. |
| 262 | 262 | * @return Column |
| 263 | 263 | */ |
| 264 | - public function offsetGet ($name) { |
|
| 264 | + public function offsetGet($name) { |
|
| 265 | 265 | return new Column($this->db, $name, $this->alias); |
| 266 | 266 | } |
| 267 | 267 | |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | * @param string $order |
| 272 | 272 | * @return $this |
| 273 | 273 | */ |
| 274 | - public function order (string $order) { |
|
| 274 | + public function order(string $order) { |
|
| 275 | 275 | if (strlen($order)) { |
| 276 | 276 | $order = " ORDER BY {$order}"; |
| 277 | 277 | } |
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | /** |
| 283 | 283 | * @return Statement |
| 284 | 284 | */ |
| 285 | - public function prepare () { |
|
| 285 | + public function prepare() { |
|
| 286 | 286 | return $this->db->prepare($this->toSql()); |
| 287 | 287 | } |
| 288 | 288 | |
@@ -290,7 +290,7 @@ discard block |
||
| 290 | 290 | * @param Closure $fetcher |
| 291 | 291 | * @return $this |
| 292 | 292 | */ |
| 293 | - public function setFetcher (Closure $fetcher) { |
|
| 293 | + public function setFetcher(Closure $fetcher) { |
|
| 294 | 294 | $this->fetcher = $fetcher; |
| 295 | 295 | return $this; |
| 296 | 296 | } |
@@ -298,7 +298,7 @@ discard block |
||
| 298 | 298 | /** |
| 299 | 299 | * @return string |
| 300 | 300 | */ |
| 301 | - public function toSql (): string { |
|
| 301 | + public function toSql(): string { |
|
| 302 | 302 | $sql = "SELECT {$this->_columns} FROM {$this->table}"; |
| 303 | 303 | $sql .= $this->_join; |
| 304 | 304 | $sql .= $this->_where; |
@@ -314,7 +314,7 @@ discard block |
||
| 314 | 314 | * |
| 315 | 315 | * @return string |
| 316 | 316 | */ |
| 317 | - public function toSubquery (): string { |
|
| 317 | + public function toSubquery(): string { |
|
| 318 | 318 | return "({$this->toSql()}) AS {$this->alias}"; |
| 319 | 319 | } |
| 320 | 320 | |
@@ -324,7 +324,7 @@ discard block |
||
| 324 | 324 | * @param string $condition |
| 325 | 325 | * @return $this |
| 326 | 326 | */ |
| 327 | - public function where (string $condition) { |
|
| 327 | + public function where(string $condition) { |
|
| 328 | 328 | if (!strlen($this->_where)) { |
| 329 | 329 | $this->_where = " WHERE {$condition}"; |
| 330 | 330 | } |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | * @param string|EntityInterface $class |
| 60 | 60 | * @return Record |
| 61 | 61 | */ |
| 62 | - public static function fromClass (DB $db, $class) { |
|
| 62 | + public static function fromClass(DB $db, $class) { |
|
| 63 | 63 | try { |
| 64 | 64 | $rClass = new ReflectionClass($class); |
| 65 | 65 | } |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | * @param string[] $columns Property names. |
| 93 | 93 | * @param EAV[] $eav Keyed by property name. |
| 94 | 94 | */ |
| 95 | - public function __construct (DB $db, EntityInterface $proto, string $table, array $columns, array $eav = []) { |
|
| 95 | + public function __construct(DB $db, EntityInterface $proto, string $table, array $columns, array $eav = []) { |
|
| 96 | 96 | parent::__construct($db, $table, $columns); |
| 97 | 97 | $this->proto = $proto; |
| 98 | 98 | try { |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | * @param Statement $statement |
| 126 | 126 | * @return EntityInterface[] Enumerated |
| 127 | 127 | */ |
| 128 | - public function fetchAll (Statement $statement): array { |
|
| 128 | + public function fetchAll(Statement $statement): array { |
|
| 129 | 129 | return iterator_to_array($this->fetchEach($statement)); |
| 130 | 130 | } |
| 131 | 131 | |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | * @param Statement $statement |
| 137 | 137 | * @return Generator |
| 138 | 138 | */ |
| 139 | - public function fetchEach (Statement $statement) { |
|
| 139 | + public function fetchEach(Statement $statement) { |
|
| 140 | 140 | do { |
| 141 | 141 | $entities = []; |
| 142 | 142 | for ($i = 0; $i < 256 and false !== $row = $statement->fetch(); $i++) { |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | * @param array[] $eavMatch Additional `[eav property => attribute => mixed]` |
| 160 | 160 | * @return Select |
| 161 | 161 | */ |
| 162 | - public function find (array $match, array $eavMatch = []) { |
|
| 162 | + public function find(array $match, array $eavMatch = []) { |
|
| 163 | 163 | $select = $this->select(); |
| 164 | 164 | foreach ($this->db->matchArray($match) as $condition) { |
| 165 | 165 | $select->where($condition); |
@@ -175,14 +175,14 @@ discard block |
||
| 175 | 175 | * @param string $property |
| 176 | 176 | * @return EAV |
| 177 | 177 | */ |
| 178 | - final public function getEav (string $property) { |
|
| 178 | + final public function getEav(string $property) { |
|
| 179 | 179 | return $this->eav[$property]; |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | /** |
| 183 | 183 | * @return EntityInterface |
| 184 | 184 | */ |
| 185 | - public function getProto () { |
|
| 185 | + public function getProto() { |
|
| 186 | 186 | return $this->proto; |
| 187 | 187 | } |
| 188 | 188 | |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | * @param EntityInterface $entity |
| 191 | 191 | * @return array |
| 192 | 192 | */ |
| 193 | - protected function getValues (EntityInterface $entity): array { |
|
| 193 | + protected function getValues(EntityInterface $entity): array { |
|
| 194 | 194 | $values = []; |
| 195 | 195 | foreach (array_keys($this->columns) as $name) { |
| 196 | 196 | $values[$name] = $this->properties[$name]->getValue($entity); |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | * @param int $id |
| 205 | 205 | * @return null|EntityInterface |
| 206 | 206 | */ |
| 207 | - public function load (int $id) { |
|
| 207 | + public function load(int $id) { |
|
| 208 | 208 | $load = $this->cache(__FUNCTION__, function() { |
| 209 | 209 | return $this->select(array_keys($this->columns))->where('id = ?')->prepare(); |
| 210 | 210 | }); |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | * |
| 223 | 223 | * @param EntityInterface[] $entities |
| 224 | 224 | */ |
| 225 | - protected function loadEav (array $entities): void { |
|
| 225 | + protected function loadEav(array $entities): void { |
|
| 226 | 226 | $ids = array_keys($entities); |
| 227 | 227 | foreach ($this->eav as $name => $eav) { |
| 228 | 228 | foreach ($eav->loadAll($ids) as $id => $values) { |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | * @param EntityInterface $entity |
| 240 | 240 | * @return int ID |
| 241 | 241 | */ |
| 242 | - public function save (EntityInterface $entity): int { |
|
| 242 | + public function save(EntityInterface $entity): int { |
|
| 243 | 243 | if (!$entity->getId()) { |
| 244 | 244 | $this->saveInsert($entity); |
| 245 | 245 | } |
@@ -253,7 +253,7 @@ discard block |
||
| 253 | 253 | /** |
| 254 | 254 | * @param EntityInterface $entity |
| 255 | 255 | */ |
| 256 | - protected function saveEav (EntityInterface $entity): void { |
|
| 256 | + protected function saveEav(EntityInterface $entity): void { |
|
| 257 | 257 | $id = $entity->getId(); |
| 258 | 258 | foreach ($this->eav as $name => $eav) { |
| 259 | 259 | $values = $this->properties[$name]->getValue($entity); |
@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | * |
| 269 | 269 | * @param EntityInterface $entity |
| 270 | 270 | */ |
| 271 | - protected function saveInsert (EntityInterface $entity): void { |
|
| 271 | + protected function saveInsert(EntityInterface $entity): void { |
|
| 272 | 272 | $insert = $this->cache(__FUNCTION__, function() { |
| 273 | 273 | $slots = SQL::slots(array_keys($this->columns)); |
| 274 | 274 | unset($slots['id']); |
@@ -286,7 +286,7 @@ discard block |
||
| 286 | 286 | * |
| 287 | 287 | * @param EntityInterface $entity |
| 288 | 288 | */ |
| 289 | - protected function saveUpdate (EntityInterface $entity): void { |
|
| 289 | + protected function saveUpdate(EntityInterface $entity): void { |
|
| 290 | 290 | $this->cache(__FUNCTION__, function() { |
| 291 | 291 | $slots = SQL::slotsEqual(array_keys($this->columns)); |
| 292 | 292 | unset($slots['id']); |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | * @param array $columns Defaults to all columns. |
| 302 | 302 | * @return Select |
| 303 | 303 | */ |
| 304 | - public function select (array $columns = []) { |
|
| 304 | + public function select(array $columns = []) { |
|
| 305 | 305 | return parent::select($columns)->setFetcher(function(Statement $statement) { |
| 306 | 306 | yield from $this->fetchEach($statement); |
| 307 | 307 | }); |
@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | * @param EntityInterface $proto |
| 312 | 312 | * @return $this |
| 313 | 313 | */ |
| 314 | - public function setProto (EntityInterface $proto) { |
|
| 314 | + public function setProto(EntityInterface $proto) { |
|
| 315 | 315 | $this->proto = $proto; |
| 316 | 316 | return $this; |
| 317 | 317 | } |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | * @param EntityInterface $entity |
| 321 | 321 | * @param array $values |
| 322 | 322 | */ |
| 323 | - protected function setValues (EntityInterface $entity, array $values): void { |
|
| 323 | + protected function setValues(EntityInterface $entity, array $values): void { |
|
| 324 | 324 | foreach ($values as $name => $value) { |
| 325 | 325 | settype($value, $this->types[$name]); |
| 326 | 326 | $this->properties[$name]->setValue($entity, $value); |
@@ -62,8 +62,7 @@ discard block |
||
| 62 | 62 | public static function fromClass (DB $db, $class) { |
| 63 | 63 | try { |
| 64 | 64 | $rClass = new ReflectionClass($class); |
| 65 | - } |
|
| 66 | - catch (ReflectionException $exception) { |
|
| 65 | + } catch (ReflectionException $exception) { |
|
| 67 | 66 | throw new LogicException('Unexpected ReflectionException', 0, $exception); |
| 68 | 67 | } |
| 69 | 68 | $columns = []; |
@@ -73,8 +72,7 @@ discard block |
||
| 73 | 72 | $name = $rProp->getName(); |
| 74 | 73 | if (preg_match('/@col(umn)?[\s$]/', $doc)) { |
| 75 | 74 | $columns[] = $name; |
| 76 | - } |
|
| 77 | - elseif (preg_match('/@eav\s+(?<table>\S+)/', $doc, $attr)) { |
|
| 75 | + } elseif (preg_match('/@eav\s+(?<table>\S+)/', $doc, $attr)) { |
|
| 78 | 76 | $eav[$name] = new EAV($db, $attr['table']); |
| 79 | 77 | } |
| 80 | 78 | } |
@@ -113,8 +111,7 @@ discard block |
||
| 113 | 111 | $rProp->setAccessible(true); |
| 114 | 112 | $this->properties[$name] = $rProp; |
| 115 | 113 | } |
| 116 | - } |
|
| 117 | - catch (ReflectionException $exception) { |
|
| 114 | + } catch (ReflectionException $exception) { |
|
| 118 | 115 | throw new LogicException('Unexpected ReflectionException', 0, $exception); |
| 119 | 116 | } |
| 120 | 117 | } |
@@ -242,8 +239,7 @@ discard block |
||
| 242 | 239 | public function save (EntityInterface $entity): int { |
| 243 | 240 | if (!$entity->getId()) { |
| 244 | 241 | $this->saveInsert($entity); |
| 245 | - } |
|
| 246 | - else { |
|
| 242 | + } else { |
|
| 247 | 243 | $this->saveUpdate($entity); |
| 248 | 244 | } |
| 249 | 245 | $this->saveEav($entity); |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | /** |
| 20 | 20 | * @param DB $db |
| 21 | 21 | */ |
| 22 | - public function __construct (DB $db) { |
|
| 22 | + public function __construct(DB $db) { |
|
| 23 | 23 | $this->db = $db; |
| 24 | 24 | } |
| 25 | 25 | |
@@ -28,19 +28,19 @@ discard block |
||
| 28 | 28 | * |
| 29 | 29 | * @return string |
| 30 | 30 | */ |
| 31 | - abstract public function __toString (); |
|
| 31 | + abstract public function __toString(); |
|
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * @param string $name |
| 35 | 35 | * @return bool |
| 36 | 36 | */ |
| 37 | - abstract public function offsetExists ($name): bool; |
|
| 37 | + abstract public function offsetExists($name): bool; |
|
| 38 | 38 | |
| 39 | 39 | /** |
| 40 | 40 | * @param string $name |
| 41 | 41 | * @return Column |
| 42 | 42 | */ |
| 43 | - abstract public function offsetGet ($name); |
|
| 43 | + abstract public function offsetGet($name); |
|
| 44 | 44 | |
| 45 | 45 | /** |
| 46 | 46 | * Throws. |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | * @param void $value |
| 50 | 50 | * @throws Exception |
| 51 | 51 | */ |
| 52 | - final public function offsetSet ($name, $value): void { |
|
| 52 | + final public function offsetSet($name, $value): void { |
|
| 53 | 53 | throw new Exception('Tables are immutable.'); |
| 54 | 54 | } |
| 55 | 55 | |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | * @param void $name |
| 60 | 60 | * @throws Exception |
| 61 | 61 | */ |
| 62 | - final public function offsetUnset ($name): void { |
|
| 62 | + final public function offsetUnset($name): void { |
|
| 63 | 63 | $this->offsetSet($name, null); |
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | \ No newline at end of file |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | * @param string $passwd |
| 54 | 54 | * @param array $options |
| 55 | 55 | */ |
| 56 | - public function __construct ($dsn, $username = null, $passwd = null, $options = null) { |
|
| 56 | + public function __construct($dsn, $username = null, $passwd = null, $options = null) { |
|
| 57 | 57 | parent::__construct($dsn, $username, $passwd, $options); |
| 58 | 58 | $this->driver = $this->getAttribute(self::ATTR_DRIVER_NAME); |
| 59 | 59 | $this->setAttribute(self::ATTR_DEFAULT_FETCH_MODE, self::FETCH_ASSOC); |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | * @param string $sql |
| 76 | 76 | * @return int |
| 77 | 77 | */ |
| 78 | - public function exec ($sql): int { |
|
| 78 | + public function exec($sql): int { |
|
| 79 | 79 | $this->logger->__invoke($sql); |
| 80 | 80 | return parent::exec($sql); |
| 81 | 81 | } |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | /** |
| 84 | 84 | * @return string |
| 85 | 85 | */ |
| 86 | - final public function getDriver (): string { |
|
| 86 | + final public function getDriver(): string { |
|
| 87 | 87 | return $this->driver; |
| 88 | 88 | } |
| 89 | 89 | |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | * @param string $interface |
| 94 | 94 | * @return Junction |
| 95 | 95 | */ |
| 96 | - public function getJunction ($interface) { |
|
| 96 | + public function getJunction($interface) { |
|
| 97 | 97 | if (!isset($this->junctions[$interface])) { |
| 98 | 98 | $this->junctions[$interface] = Junction::fromInterface($this, $interface); |
| 99 | 99 | } |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | /** |
| 104 | 104 | * @return Closure |
| 105 | 105 | */ |
| 106 | - public function getLogger () { |
|
| 106 | + public function getLogger() { |
|
| 107 | 107 | return $this->logger; |
| 108 | 108 | } |
| 109 | 109 | |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | * @param string|EntityInterface $class |
| 114 | 114 | * @return Record |
| 115 | 115 | */ |
| 116 | - public function getRecord ($class) { |
|
| 116 | + public function getRecord($class) { |
|
| 117 | 117 | $name = $class; |
| 118 | 118 | if (is_object($name)) { |
| 119 | 119 | $name = get_class($name); |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | * @param mixed $b |
| 139 | 139 | * @return string |
| 140 | 140 | */ |
| 141 | - public function match ($a, $b) { |
|
| 141 | + public function match($a, $b) { |
|
| 142 | 142 | if ($b instanceof Closure) { |
| 143 | 143 | if (!$a instanceof Column) { |
| 144 | 144 | $a = new Column($this, $a); |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | * @param array $match |
| 165 | 165 | * @return string[] |
| 166 | 166 | */ |
| 167 | - public function matchArray (array $match) { |
|
| 167 | + public function matchArray(array $match) { |
|
| 168 | 168 | return array_map([$this, 'match'], array_keys($match), $match); |
| 169 | 169 | } |
| 170 | 170 | |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | * @param string $access Class or interface name. |
| 173 | 173 | * @return bool |
| 174 | 174 | */ |
| 175 | - public function offsetExists ($access): bool { |
|
| 175 | + public function offsetExists($access): bool { |
|
| 176 | 176 | return (bool)$this->offsetGet($access); |
| 177 | 177 | } |
| 178 | 178 | |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | * @param string $access Class or interface name. |
| 181 | 181 | * @return null|Record|Junction |
| 182 | 182 | */ |
| 183 | - public function offsetGet ($access) { |
|
| 183 | + public function offsetGet($access) { |
|
| 184 | 184 | if (class_exists($access)) { |
| 185 | 185 | return $this->getRecord($access); |
| 186 | 186 | } |
@@ -197,7 +197,7 @@ discard block |
||
| 197 | 197 | * @param void $value |
| 198 | 198 | * @throws Exception |
| 199 | 199 | */ |
| 200 | - final public function offsetSet ($access, $value): void { |
|
| 200 | + final public function offsetSet($access, $value): void { |
|
| 201 | 201 | throw new Exception('The schema is immutable.'); |
| 202 | 202 | } |
| 203 | 203 | |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | * @param void $access |
| 208 | 208 | * @throws Exception |
| 209 | 209 | */ |
| 210 | - final public function offsetUnset ($access): void { |
|
| 210 | + final public function offsetUnset($access): void { |
|
| 211 | 211 | $this->offsetSet($access, null); |
| 212 | 212 | } |
| 213 | 213 | |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | * @param array $options |
| 219 | 219 | * @return Statement |
| 220 | 220 | */ |
| 221 | - public function prepare ($sql, $options = []) { |
|
| 221 | + public function prepare($sql, $options = []) { |
|
| 222 | 222 | $this->logger->__invoke($sql); |
| 223 | 223 | /** @var Statement $statement */ |
| 224 | 224 | $statement = parent::prepare($sql, $options); |
@@ -234,7 +234,7 @@ discard block |
||
| 234 | 234 | * @param array $ctorargs |
| 235 | 235 | * @return Statement |
| 236 | 236 | */ |
| 237 | - public function query ($sql, $mode = PDO::ATTR_DEFAULT_FETCH_MODE, $arg3 = null, array $ctorargs = []) { |
|
| 237 | + public function query($sql, $mode = PDO::ATTR_DEFAULT_FETCH_MODE, $arg3 = null, array $ctorargs = []) { |
|
| 238 | 238 | $this->logger->__invoke($sql); |
| 239 | 239 | /** @var Statement $statement */ |
| 240 | 240 | $statement = parent::query(...func_get_args()); |
@@ -253,7 +253,7 @@ discard block |
||
| 253 | 253 | * @param int $type Ignored. |
| 254 | 254 | * @return string |
| 255 | 255 | */ |
| 256 | - public function quote ($value, $type = null) { |
|
| 256 | + public function quote($value, $type = null) { |
|
| 257 | 257 | if ($value instanceof ExpressionInterface) { |
| 258 | 258 | return (string)$value; |
| 259 | 259 | } |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | * @param array $values |
| 274 | 274 | * @return string[] |
| 275 | 275 | */ |
| 276 | - public function quoteArray (array $values): array { |
|
| 276 | + public function quoteArray(array $values): array { |
|
| 277 | 277 | return array_map([$this, 'quote'], $values); |
| 278 | 278 | } |
| 279 | 279 | |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | * @param mixed $value |
| 284 | 284 | * @return string|string[] |
| 285 | 285 | */ |
| 286 | - public function quoteMixed ($value) { |
|
| 286 | + public function quoteMixed($value) { |
|
| 287 | 287 | if (is_array($value)) { |
| 288 | 288 | return $this->quoteArray($value); |
| 289 | 289 | } |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | * @param EntityInterface $entity |
| 297 | 297 | * @return int ID |
| 298 | 298 | */ |
| 299 | - public function save (EntityInterface $entity): int { |
|
| 299 | + public function save(EntityInterface $entity): int { |
|
| 300 | 300 | return $this->getRecord($entity)->save($entity); |
| 301 | 301 | } |
| 302 | 302 | |
@@ -304,7 +304,7 @@ discard block |
||
| 304 | 304 | * @param Closure $logger |
| 305 | 305 | * @return $this |
| 306 | 306 | */ |
| 307 | - public function setLogger (Closure $logger) { |
|
| 307 | + public function setLogger(Closure $logger) { |
|
| 308 | 308 | $this->logger = $logger; |
| 309 | 309 | return $this; |
| 310 | 310 | } |