@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | * @param string $name |
| 43 | 43 | * @param string[] $columns |
| 44 | 44 | */ |
| 45 | - public function __construct (DB $db, string $name, array $columns) { |
|
| 45 | + public function __construct(DB $db, string $name, array $columns) { |
|
| 46 | 46 | parent::__construct($db); |
| 47 | 47 | $this->name = $name; |
| 48 | 48 | foreach ($columns as $column) { |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | * |
| 56 | 56 | * @return string |
| 57 | 57 | */ |
| 58 | - final public function __toString () { |
|
| 58 | + final public function __toString() { |
|
| 59 | 59 | return $this->name; |
| 60 | 60 | } |
| 61 | 61 | |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | * @param array $values |
| 66 | 66 | * @return int Rows affected. |
| 67 | 67 | */ |
| 68 | - public function apply (array $values): int { |
|
| 68 | + public function apply(array $values): int { |
|
| 69 | 69 | $columns = implode(',', array_keys($values)); |
| 70 | 70 | $values = $this->db->quoteList($values); |
| 71 | 71 | if ($this->db->isSQLite()) { |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | * @param Closure $prepare `():Statement` |
| 86 | 86 | * @return Statement |
| 87 | 87 | */ |
| 88 | - protected function cache (string $key, Closure $prepare) { |
|
| 88 | + protected function cache(string $key, Closure $prepare) { |
|
| 89 | 89 | return $this->_cache[$key] ??= $prepare->__invoke(); |
| 90 | 90 | } |
| 91 | 91 | |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | * @param array $match `[a => b]` |
| 94 | 94 | * @return int |
| 95 | 95 | */ |
| 96 | - public function count (array $match = []) { |
|
| 96 | + public function count(array $match = []) { |
|
| 97 | 97 | $select = $this->select(['COUNT(*)']); |
| 98 | 98 | foreach ($match as $a => $b) { |
| 99 | 99 | $select->where($this->db->match($this[$a] ?? $a, $b)); |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | * @param array $match |
| 110 | 110 | * @return int Rows affected. |
| 111 | 111 | */ |
| 112 | - public function delete (array $match): int { |
|
| 112 | + public function delete(array $match): int { |
|
| 113 | 113 | foreach ($match as $a => $b) { |
| 114 | 114 | $match[$a] = $this->db->match($this[$a] ?? $a, $b); |
| 115 | 115 | } |
@@ -120,14 +120,14 @@ discard block |
||
| 120 | 120 | /** |
| 121 | 121 | * @return Column[] |
| 122 | 122 | */ |
| 123 | - final public function getColumns (): array { |
|
| 123 | + final public function getColumns(): array { |
|
| 124 | 124 | return $this->columns; |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
| 128 | 128 | * @return string |
| 129 | 129 | */ |
| 130 | - final public function getName (): string { |
|
| 130 | + final public function getName(): string { |
|
| 131 | 131 | return $this->name; |
| 132 | 132 | } |
| 133 | 133 | |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | * @param array $values |
| 138 | 138 | * @return Statement |
| 139 | 139 | */ |
| 140 | - public function insert (array $values) { |
|
| 140 | + public function insert(array $values) { |
|
| 141 | 141 | $columns = implode(',', array_keys($values)); |
| 142 | 142 | $values = $this->db->quoteList($values); |
| 143 | 143 | return $this->db->query("INSERT INTO {$this} ($columns) VALUES ($values)"); |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | * @param int|string $column |
| 148 | 148 | * @return Column |
| 149 | 149 | */ |
| 150 | - public function offsetGet ($column) { |
|
| 150 | + public function offsetGet($column) { |
|
| 151 | 151 | if (is_int($column)) { |
| 152 | 152 | return current(array_slice($this->columns, $column, 1)) ?: null; |
| 153 | 153 | } |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | * @param string[] $columns Defaults to all columns. |
| 161 | 161 | * @return Select|array[] |
| 162 | 162 | */ |
| 163 | - public function select (array $columns = []) { |
|
| 163 | + public function select(array $columns = []) { |
|
| 164 | 164 | if (empty($columns)) { |
| 165 | 165 | $columns = $this->columns; |
| 166 | 166 | } |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | * @param string $name |
| 174 | 174 | * @return Table |
| 175 | 175 | */ |
| 176 | - public function setName (string $name) { |
|
| 176 | + public function setName(string $name) { |
|
| 177 | 177 | $clone = clone $this; |
| 178 | 178 | $clone->name = $name; |
| 179 | 179 | foreach ($this->columns as $name => $column) { |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | * @param array $match |
| 192 | 192 | * @return int Rows affected. |
| 193 | 193 | */ |
| 194 | - public function update (array $values, array $match): int { |
|
| 194 | + public function update(array $values, array $match): int { |
|
| 195 | 195 | foreach ($this->db->quoteArray($values) as $key => $value) { |
| 196 | 196 | $values[$key] = "{$key} = {$value}"; |
| 197 | 197 | } |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | * @param string $interface |
| 32 | 32 | * @return Junction |
| 33 | 33 | */ |
| 34 | - public static function fromInterface (DB $db, string $interface) { |
|
| 34 | + public static function fromInterface(DB $db, string $interface) { |
|
| 35 | 35 | try { |
| 36 | 36 | $ref = new ReflectionClass($interface); |
| 37 | 37 | } |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | * @param string $table |
| 55 | 55 | * @param string[] $classes |
| 56 | 56 | */ |
| 57 | - public function __construct (DB $db, string $table, array $classes) { |
|
| 57 | + public function __construct(DB $db, string $table, array $classes) { |
|
| 58 | 58 | parent::__construct($db, $table, array_keys($classes)); |
| 59 | 59 | $this->classes = $classes; |
| 60 | 60 | } |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | * @param array $match Keyed by junction column. |
| 69 | 69 | * @return Select|EntityInterface[] |
| 70 | 70 | */ |
| 71 | - public function find (string $key, array $match = []) { |
|
| 71 | + public function find(string $key, array $match = []) { |
|
| 72 | 72 | $record = $this->db->getRecord($this->classes[$key]); |
| 73 | 73 | $select = $record->loadAll(); |
| 74 | 74 | $select->join($this, $this[$key]->isEqual($record['id'])); |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | * @param int[] $ids Keyed by column. |
| 85 | 85 | * @return int Rows affected. |
| 86 | 86 | */ |
| 87 | - public function link (array $ids): int { |
|
| 87 | + public function link(array $ids): int { |
|
| 88 | 88 | $statement = $this->cache(__FUNCTION__, function() { |
| 89 | 89 | $columns = implode(',', array_keys($this->columns)); |
| 90 | 90 | $slots = implode(',', SQL::slots(array_keys($this->columns))); |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | * @param array $ids Keyed by Column |
| 109 | 109 | * @return int Rows affected |
| 110 | 110 | */ |
| 111 | - public function unlink (array $ids): int { |
|
| 111 | + public function unlink(array $ids): int { |
|
| 112 | 112 | return $this->delete($ids); |
| 113 | 113 | } |
| 114 | 114 | } |
| 115 | 115 | \ No newline at end of file |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | * @param string|EntityInterface $class |
| 67 | 67 | * @return Record |
| 68 | 68 | */ |
| 69 | - public static function fromClass (DB $db, $class) { |
|
| 69 | + public static function fromClass(DB $db, $class) { |
|
| 70 | 70 | return (function() use ($db, $class) { |
| 71 | 71 | $rClass = new ReflectionClass($class); |
| 72 | 72 | $columns = []; |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | * @param string[] $columns Property names. |
| 96 | 96 | * @param EAV[] $eav Keyed by property name. |
| 97 | 97 | */ |
| 98 | - public function __construct (DB $db, EntityInterface $proto, string $table, array $columns, array $eav = []) { |
|
| 98 | + public function __construct(DB $db, EntityInterface $proto, string $table, array $columns, array $eav = []) { |
|
| 99 | 99 | parent::__construct($db, $table, $columns); |
| 100 | 100 | $this->proto = $proto; |
| 101 | 101 | (function() use ($proto, $columns, $eav) { |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | * @param array[] $eavMatch `[eav property => attribute => mixed]` |
| 133 | 133 | * @return Select|EntityInterface[] |
| 134 | 134 | */ |
| 135 | - public function find (array $match, array $eavMatch = []) { |
|
| 135 | + public function find(array $match, array $eavMatch = []) { |
|
| 136 | 136 | $select = $this->loadAll(); |
| 137 | 137 | foreach ($match as $a => $b) { |
| 138 | 138 | $select->where($this->db->match($this[$a] ?? $a, $b)); |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | * @param Statement $statement |
| 151 | 151 | * @return EntityInterface[] Keyed by ID |
| 152 | 152 | */ |
| 153 | - public function getAll (Statement $statement): array { |
|
| 153 | + public function getAll(Statement $statement): array { |
|
| 154 | 154 | return iterator_to_array($this->getEach($statement)); |
| 155 | 155 | } |
| 156 | 156 | |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | * @param Statement $statement |
| 162 | 162 | * @return Generator|EntityInterface[] Keyed by ID |
| 163 | 163 | */ |
| 164 | - public function getEach (Statement $statement) { |
|
| 164 | + public function getEach(Statement $statement) { |
|
| 165 | 165 | do { |
| 166 | 166 | $entities = []; |
| 167 | 167 | for ($i = 0; $i < 256 and false !== $row = $statement->fetch(); $i++) { |
@@ -178,14 +178,14 @@ discard block |
||
| 178 | 178 | * @param string $property |
| 179 | 179 | * @return EAV |
| 180 | 180 | */ |
| 181 | - final public function getEav (string $property) { |
|
| 181 | + final public function getEav(string $property) { |
|
| 182 | 182 | return $this->eav[$property]; |
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | /** |
| 186 | 186 | * @return EntityInterface |
| 187 | 187 | */ |
| 188 | - public function getProto () { |
|
| 188 | + public function getProto() { |
|
| 189 | 189 | return $this->proto; |
| 190 | 190 | } |
| 191 | 191 | |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | * @param EntityInterface $entity |
| 194 | 194 | * @return array |
| 195 | 195 | */ |
| 196 | - protected function getValues (EntityInterface $entity): array { |
|
| 196 | + protected function getValues(EntityInterface $entity): array { |
|
| 197 | 197 | $values = []; |
| 198 | 198 | foreach (array_keys($this->columns) as $name) { |
| 199 | 199 | $values[$name] = $this->properties[$name]->getValue($entity); |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | * @param int $id |
| 208 | 208 | * @return null|EntityInterface |
| 209 | 209 | */ |
| 210 | - public function load (int $id) { |
|
| 210 | + public function load(int $id) { |
|
| 211 | 211 | $statement = $this->cache(__FUNCTION__, function() { |
| 212 | 212 | return $this->select(array_keys($this->columns))->where('id = ?')->prepare(); |
| 213 | 213 | }); |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | * |
| 228 | 228 | * @return Select|EntityInterface[] |
| 229 | 229 | */ |
| 230 | - public function loadAll () { |
|
| 230 | + public function loadAll() { |
|
| 231 | 231 | return $this->select()->setFetcher(function(Statement $statement) { |
| 232 | 232 | yield from $this->getEach($statement); |
| 233 | 233 | }); |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | * |
| 239 | 239 | * @param EntityInterface[] $entities |
| 240 | 240 | */ |
| 241 | - protected function loadEav (array $entities): void { |
|
| 241 | + protected function loadEav(array $entities): void { |
|
| 242 | 242 | $ids = array_keys($entities); |
| 243 | 243 | foreach ($this->eav as $name => $eav) { |
| 244 | 244 | foreach ($eav->loadAll($ids) as $id => $values) { |
@@ -253,7 +253,7 @@ discard block |
||
| 253 | 253 | * @param EntityInterface $entity |
| 254 | 254 | * @return int ID |
| 255 | 255 | */ |
| 256 | - public function save (EntityInterface $entity): int { |
|
| 256 | + public function save(EntityInterface $entity): int { |
|
| 257 | 257 | if (!$entity->getId()) { |
| 258 | 258 | $this->saveInsert($entity); |
| 259 | 259 | } |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | /** |
| 268 | 268 | * @param EntityInterface $entity |
| 269 | 269 | */ |
| 270 | - protected function saveEav (EntityInterface $entity): void { |
|
| 270 | + protected function saveEav(EntityInterface $entity): void { |
|
| 271 | 271 | $id = $entity->getId(); |
| 272 | 272 | foreach ($this->eav as $name => $eav) { |
| 273 | 273 | // may be null to skip |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | * |
| 284 | 284 | * @param EntityInterface $entity |
| 285 | 285 | */ |
| 286 | - protected function saveInsert (EntityInterface $entity): void { |
|
| 286 | + protected function saveInsert(EntityInterface $entity): void { |
|
| 287 | 287 | $statement = $this->cache(__FUNCTION__, function() { |
| 288 | 288 | $slots = SQL::slots(array_keys($this->columns)); |
| 289 | 289 | unset($slots['id']); |
@@ -302,7 +302,7 @@ discard block |
||
| 302 | 302 | * |
| 303 | 303 | * @param EntityInterface $entity |
| 304 | 304 | */ |
| 305 | - protected function saveUpdate (EntityInterface $entity): void { |
|
| 305 | + protected function saveUpdate(EntityInterface $entity): void { |
|
| 306 | 306 | $statement = $this->cache(__FUNCTION__, function() { |
| 307 | 307 | $slots = SQL::slotsEqual(array_keys($this->columns)); |
| 308 | 308 | unset($slots['id']); |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | * @param EntityInterface $proto |
| 318 | 318 | * @return $this |
| 319 | 319 | */ |
| 320 | - public function setProto (EntityInterface $proto) { |
|
| 320 | + public function setProto(EntityInterface $proto) { |
|
| 321 | 321 | $this->proto = $proto; |
| 322 | 322 | return $this; |
| 323 | 323 | } |
@@ -326,7 +326,7 @@ discard block |
||
| 326 | 326 | * @param EntityInterface $entity |
| 327 | 327 | * @param array $values |
| 328 | 328 | */ |
| 329 | - protected function setValues (EntityInterface $entity, array $values): void { |
|
| 329 | + protected function setValues(EntityInterface $entity, array $values): void { |
|
| 330 | 330 | foreach ($values as $name => $value) { |
| 331 | 331 | if (isset($this->properties[$name])) { |
| 332 | 332 | settype($value, $this->types[$name]); |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | * @param string $name |
| 44 | 44 | * @param string $qualifier |
| 45 | 45 | */ |
| 46 | - public function __construct (DB $db, string $name, string $qualifier = '') { |
|
| 46 | + public function __construct(DB $db, string $name, string $qualifier = '') { |
|
| 47 | 47 | $this->db = $db; |
| 48 | 48 | $this->name = $name; |
| 49 | 49 | $this->qualifier = $qualifier; |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | * |
| 55 | 55 | * @return string |
| 56 | 56 | */ |
| 57 | - public function __toString () { |
|
| 57 | + public function __toString() { |
|
| 58 | 58 | if (strlen($this->qualifier)) { |
| 59 | 59 | return "{$this->qualifier}.{$this->name}"; |
| 60 | 60 | } |
@@ -64,14 +64,14 @@ discard block |
||
| 64 | 64 | /** |
| 65 | 65 | * @return string |
| 66 | 66 | */ |
| 67 | - final public function getName (): string { |
|
| 67 | + final public function getName(): string { |
|
| 68 | 68 | return $this->name; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | /** |
| 72 | 72 | * @return string |
| 73 | 73 | */ |
| 74 | - final public function getQualifier (): string { |
|
| 74 | + final public function getQualifier(): string { |
|
| 75 | 75 | return $this->qualifier; |
| 76 | 76 | } |
| 77 | 77 | |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | * |
| 81 | 81 | * @return Select|scalar[] |
| 82 | 82 | */ |
| 83 | - public function select () { |
|
| 83 | + public function select() { |
|
| 84 | 84 | return Select::factory($this->db, $this->qualifier, [$this->name]) |
| 85 | 85 | ->setFetcher(function(Statement $statement) { |
| 86 | 86 | while (false !== $value = $statement->fetchColumn()) { |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | * @param string $name |
| 94 | 94 | * @return $this |
| 95 | 95 | */ |
| 96 | - public function setName (string $name) { |
|
| 96 | + public function setName(string $name) { |
|
| 97 | 97 | $clone = clone $this; |
| 98 | 98 | $clone->name = $name; |
| 99 | 99 | return $clone; |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | * @param string $qualifier |
| 104 | 104 | * @return $this |
| 105 | 105 | */ |
| 106 | - public function setQualifier (string $qualifier) { |
|
| 106 | + public function setQualifier(string $qualifier) { |
|
| 107 | 107 | $clone = clone $this; |
| 108 | 108 | $clone->qualifier = $qualifier; |
| 109 | 109 | return $clone; |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | /** |
| 15 | 15 | * @return string |
| 16 | 16 | */ |
| 17 | - abstract public function __toString (); |
|
| 17 | + abstract public function __toString(); |
|
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * @var DB |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | * |
| 20 | 20 | * @return Text |
| 21 | 21 | */ |
| 22 | - public function date () { |
|
| 22 | + public function date() { |
|
| 23 | 23 | return Text::factory($this->db, $this->dateFormat('%Y-%m-%d')); |
| 24 | 24 | } |
| 25 | 25 | |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | * @param string|string[] $format Format, or formats keyed by driver name. |
| 30 | 30 | * @return Text |
| 31 | 31 | */ |
| 32 | - public function dateFormat ($format) { |
|
| 32 | + public function dateFormat($format) { |
|
| 33 | 33 | if (is_array($format)) { |
| 34 | 34 | $format = $format[$this->db->getDriver()]; |
| 35 | 35 | } |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | * |
| 46 | 46 | * @return Text |
| 47 | 47 | */ |
| 48 | - public function datetime () { |
|
| 48 | + public function datetime() { |
|
| 49 | 49 | return Text::factory($this->db, $this->dateFormat([ |
| 50 | 50 | 'mysql' => '%Y-%m-%d %H:%i:%S', |
| 51 | 51 | 'sqlite' => '%Y-%m-%d %H:%M:%S' |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | * |
| 58 | 58 | * @return Num |
| 59 | 59 | */ |
| 60 | - public function day () { |
|
| 60 | + public function day() { |
|
| 61 | 61 | return Num::factory($this->db, $this->dateFormat('%d')); |
| 62 | 62 | } |
| 63 | 63 | |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | * |
| 67 | 67 | * @return Num |
| 68 | 68 | */ |
| 69 | - public function dayOfWeek () { |
|
| 69 | + public function dayOfWeek() { |
|
| 70 | 70 | return Num::factory($this->db, $this->dateFormat('%w')); |
| 71 | 71 | } |
| 72 | 72 | |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | * |
| 76 | 76 | * @return Num |
| 77 | 77 | */ |
| 78 | - public function dayOfYear () { |
|
| 78 | + public function dayOfYear() { |
|
| 79 | 79 | return Num::factory($this->db, $this->dateFormat('%j')); |
| 80 | 80 | } |
| 81 | 81 | |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | * |
| 85 | 85 | * @return Num |
| 86 | 86 | */ |
| 87 | - public function hours () { |
|
| 87 | + public function hours() { |
|
| 88 | 88 | return Num::factory($this->db, $this->dateFormat('%H')); |
| 89 | 89 | } |
| 90 | 90 | |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | * |
| 94 | 94 | * @return Num |
| 95 | 95 | */ |
| 96 | - public function minutes () { |
|
| 96 | + public function minutes() { |
|
| 97 | 97 | return Num::factory($this->db, $this->dateFormat([ |
| 98 | 98 | 'mysql' => '%i', |
| 99 | 99 | 'sqlite' => '%M' |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | * |
| 106 | 106 | * @return Num |
| 107 | 107 | */ |
| 108 | - public function month () { |
|
| 108 | + public function month() { |
|
| 109 | 109 | return Num::factory($this->db, $this->dateFormat('%m')); |
| 110 | 110 | } |
| 111 | 111 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | * |
| 115 | 115 | * @return Num |
| 116 | 116 | */ |
| 117 | - public function seconds () { |
|
| 117 | + public function seconds() { |
|
| 118 | 118 | return Num::factory($this->db, $this->dateFormat('%S')); |
| 119 | 119 | } |
| 120 | 120 | |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | * |
| 124 | 124 | * @return Text |
| 125 | 125 | */ |
| 126 | - public function time () { |
|
| 126 | + public function time() { |
|
| 127 | 127 | return Text::factory($this->db, $this->dateFormat([ |
| 128 | 128 | 'mysql' => '%H:%i:%S', |
| 129 | 129 | 'sqlite' => '%H:%M:%S' |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | * |
| 136 | 136 | * @return Num |
| 137 | 137 | */ |
| 138 | - public function timestamp () { |
|
| 138 | + public function timestamp() { |
|
| 139 | 139 | if ($this->db->isSQLite()) { |
| 140 | 140 | return Num::factory($this->db, "STRFTIME('%s',{$this})"); |
| 141 | 141 | } |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | * |
| 148 | 148 | * @return Num |
| 149 | 149 | */ |
| 150 | - public function weekOfYear () { |
|
| 150 | + public function weekOfYear() { |
|
| 151 | 151 | return Num::factory($this->db, $this->dateFormat([ |
| 152 | 152 | 'mysql' => '%U', |
| 153 | 153 | 'sqlite' => '%W' |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | * |
| 160 | 160 | * @return Num |
| 161 | 161 | */ |
| 162 | - public function year () { |
|
| 162 | + public function year() { |
|
| 163 | 163 | return Num::factory($this->db, $this->dateFormat('%Y')); |
| 164 | 164 | } |
| 165 | 165 | } |
| 166 | 166 | \ No newline at end of file |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | * |
| 15 | 15 | * @return Num |
| 16 | 16 | */ |
| 17 | - public function avg () { |
|
| 17 | + public function avg() { |
|
| 18 | 18 | return Num::factory($this->db, "AVG({$this})"); |
| 19 | 19 | } |
| 20 | 20 | |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | * |
| 24 | 24 | * @return Num |
| 25 | 25 | */ |
| 26 | - public function avgDistinct () { |
|
| 26 | + public function avgDistinct() { |
|
| 27 | 27 | return Num::factory($this->db, "AVG(DISTINCT {$this})"); |
| 28 | 28 | } |
| 29 | 29 | |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | * |
| 33 | 33 | * @return Num |
| 34 | 34 | */ |
| 35 | - public function count () { |
|
| 35 | + public function count() { |
|
| 36 | 36 | return Num::factory($this->db, "COUNT({$this})"); |
| 37 | 37 | } |
| 38 | 38 | |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | * |
| 42 | 42 | * @return Num |
| 43 | 43 | */ |
| 44 | - public function countDistinct () { |
|
| 44 | + public function countDistinct() { |
|
| 45 | 45 | return Num::factory($this->db, "COUNT(DISTINCT {$this})"); |
| 46 | 46 | } |
| 47 | 47 | |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | * @param string $delimiter |
| 52 | 52 | * @return Text |
| 53 | 53 | */ |
| 54 | - public function groupConcat (string $delimiter = ',') { |
|
| 54 | + public function groupConcat(string $delimiter = ',') { |
|
| 55 | 55 | $delimiter = $this->db->quote($delimiter); |
| 56 | 56 | if ($this->db->isSQLite()) { |
| 57 | 57 | return Text::factory($this->db, "GROUP_CONCAT({$this},{$delimiter})"); |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | * |
| 65 | 65 | * @return Num |
| 66 | 66 | */ |
| 67 | - public function max () { |
|
| 67 | + public function max() { |
|
| 68 | 68 | return Num::factory($this->db, "MAX({$this})"); |
| 69 | 69 | } |
| 70 | 70 | |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | * |
| 74 | 74 | * @return Num |
| 75 | 75 | */ |
| 76 | - public function min () { |
|
| 76 | + public function min() { |
|
| 77 | 77 | return Num::factory($this->db, "MIN({$this})"); |
| 78 | 78 | } |
| 79 | 79 | |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | * |
| 83 | 83 | * @return Num |
| 84 | 84 | */ |
| 85 | - public function sum () { |
|
| 85 | + public function sum() { |
|
| 86 | 86 | return Num::factory($this->db, "SUM({$this})"); |
| 87 | 87 | } |
| 88 | 88 | |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | * |
| 92 | 92 | * @return Num |
| 93 | 93 | */ |
| 94 | - public function sumDistinct () { |
|
| 94 | + public function sumDistinct() { |
|
| 95 | 95 | return Num::factory($this->db, "SUM(DISTINCT {$this})"); |
| 96 | 96 | } |
| 97 | 97 | } |
| 98 | 98 | \ No newline at end of file |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | * @param null|string $subject |
| 60 | 60 | * @param array $values `[when => then]` for the subject. |
| 61 | 61 | */ |
| 62 | - public function __construct (DB $db, string $subject = null, array $values = []) { |
|
| 62 | + public function __construct(DB $db, string $subject = null, array $values = []) { |
|
| 63 | 63 | parent::__construct($db, ''); |
| 64 | 64 | $this->subject = $subject; |
| 65 | 65 | $this->whenValues($values); |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | /** |
| 69 | 69 | * @return string |
| 70 | 70 | */ |
| 71 | - public function __toString (): string { |
|
| 71 | + public function __toString(): string { |
|
| 72 | 72 | $sql = 'CASE'; |
| 73 | 73 | if (isset($this->subject)) { |
| 74 | 74 | $sql .= " {$this->subject}"; |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | * @param string|ValueInterface $then |
| 100 | 100 | * @return $this |
| 101 | 101 | */ |
| 102 | - public function when ($expression, $then) { |
|
| 102 | + public function when($expression, $then) { |
|
| 103 | 103 | $this->values[$this->db->quote($expression)] = $this->db->quote($then); |
| 104 | 104 | return $this; |
| 105 | 105 | } |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | * @param array $values `[when => then]` |
| 114 | 114 | * @return $this |
| 115 | 115 | */ |
| 116 | - public function whenValues (array $values) { |
|
| 116 | + public function whenValues(array $values) { |
|
| 117 | 117 | foreach ($values as $when => $then) { |
| 118 | 118 | $this->when($when, $then); |
| 119 | 119 | } |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | * |
| 17 | 17 | * @return Text |
| 18 | 18 | */ |
| 19 | - public function hex () { |
|
| 19 | + public function hex() { |
|
| 20 | 20 | return Text::factory($this->db, "HEX({$this})"); |
| 21 | 21 | } |
| 22 | 22 | |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | * |
| 28 | 28 | * @return Num |
| 29 | 29 | */ |
| 30 | - public function length () { |
|
| 30 | + public function length() { |
|
| 31 | 31 | if ($this->db->isSQLite()) { |
| 32 | 32 | return Num::factory($this->db, "LENGTH(CAST({$this} AS TEXT))"); |
| 33 | 33 | } |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | * |
| 42 | 42 | * @return Text |
| 43 | 43 | */ |
| 44 | - public function lower () { |
|
| 44 | + public function lower() { |
|
| 45 | 45 | return Text::factory($this->db, "LOWER({$this})"); |
| 46 | 46 | } |
| 47 | 47 | |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | * @param string $substring |
| 54 | 54 | * @return Num |
| 55 | 55 | */ |
| 56 | - public function position (string $substring) { |
|
| 56 | + public function position(string $substring) { |
|
| 57 | 57 | $substring = $this->db->quote($substring); |
| 58 | 58 | if ($this->db->isSQLite()) { |
| 59 | 59 | return Num::factory($this->db, "INSTR({$this},{$substring})"); |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | * @param string $replace |
| 71 | 71 | * @return Text |
| 72 | 72 | */ |
| 73 | - public function replace (string $search, string $replace) { |
|
| 73 | + public function replace(string $search, string $replace) { |
|
| 74 | 74 | $search = $this->db->quote($search); |
| 75 | 75 | $replace = $this->db->quote($replace); |
| 76 | 76 | return Text::factory($this->db, "REPLACE({$this},{$search},{$replace})"); |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | * |
| 82 | 82 | * @return Num |
| 83 | 83 | */ |
| 84 | - public function size () { |
|
| 84 | + public function size() { |
|
| 85 | 85 | if ($this->db->isSQLite()) { |
| 86 | 86 | return Num::factory($this->db, "LENGTH(CAST({$this} AS BLOB))"); |
| 87 | 87 | } |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | * @param null|int $length |
| 98 | 98 | * @return Text |
| 99 | 99 | */ |
| 100 | - public function substr (int $start, int $length = null) { |
|
| 100 | + public function substr(int $start, int $length = null) { |
|
| 101 | 101 | if (isset($length)) { |
| 102 | 102 | return Text::factory($this->db, "SUBSTR({$this},{$start},{$length})"); |
| 103 | 103 | } |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | * |
| 112 | 112 | * @return Text |
| 113 | 113 | */ |
| 114 | - public function upper () { |
|
| 114 | + public function upper() { |
|
| 115 | 115 | return Text::factory($this->db, "UPPER({$this})"); |
| 116 | 116 | } |
| 117 | 117 | } |
| 118 | 118 | \ No newline at end of file |