Skip to content

Commit f4b5beb

Browse files
authored
chore: cs fix (#10422)
1 parent 7a530c8 commit f4b5beb

1 file changed

Lines changed: 0 additions & 16 deletions

File tree

system/Database/BaseBuilder.php

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,6 @@ public function orWhere($key, $value = null, ?bool $escape = null)
788788
* @param non-empty-string $second Second column name
789789
* @param bool|null $escape Whether to protect identifiers
790790
*
791-
*
792791
* @throws InvalidArgumentException
793792
*/
794793
public function whereColumn(string $first, string $second, ?bool $escape = null): static
@@ -803,7 +802,6 @@ public function whereColumn(string $first, string $second, ?bool $escape = null)
803802
* @param non-empty-string $second Second column name
804803
* @param bool|null $escape Whether to protect identifiers
805804
*
806-
*
807805
* @throws InvalidArgumentException
808806
*/
809807
public function orWhereColumn(string $first, string $second, ?bool $escape = null): static
@@ -861,7 +859,6 @@ public function orWhereNotExists($subquery): static
861859
* @param non-empty-string $type
862860
* @param bool|null $escape Whether to protect identifiers
863861
*
864-
*
865862
* @throws InvalidArgumentException
866863
*/
867864
protected function whereColumnHaving(string $qbKey, string $first, string $second, string $type = 'AND ', ?bool $escape = null): static
@@ -913,7 +910,6 @@ private function parseWhereColumnFirst(string $first): array
913910
*
914911
* @param array<array-key, mixed>|null $values The range values searched on
915912
*
916-
*
917913
* @throws InvalidArgumentException
918914
*/
919915
public function whereBetween(?string $key = null, ?array $values = null, ?bool $escape = null): static
@@ -927,7 +923,6 @@ public function whereBetween(?string $key = null, ?array $values = null, ?bool $
927923
*
928924
* @param array<array-key, mixed>|null $values The range values searched on
929925
*
930-
*
931926
* @throws InvalidArgumentException
932927
*/
933928
public function orWhereBetween(?string $key = null, ?array $values = null, ?bool $escape = null): static
@@ -941,7 +936,6 @@ public function orWhereBetween(?string $key = null, ?array $values = null, ?bool
941936
*
942937
* @param array<array-key, mixed>|null $values The range values searched on
943938
*
944-
*
945939
* @throws InvalidArgumentException
946940
*/
947941
public function whereNotBetween(?string $key = null, ?array $values = null, ?bool $escape = null): static
@@ -955,7 +949,6 @@ public function whereNotBetween(?string $key = null, ?array $values = null, ?boo
955949
*
956950
* @param array<array-key, mixed>|null $values The range values searched on
957951
*
958-
*
959952
* @throws InvalidArgumentException
960953
*/
961954
public function orWhereNotBetween(?string $key = null, ?array $values = null, ?bool $escape = null): static
@@ -969,7 +962,6 @@ public function orWhereNotBetween(?string $key = null, ?array $values = null, ?b
969962
*
970963
* @param array<array-key, mixed>|null $values The range values searched on
971964
*
972-
*
973965
* @throws InvalidArgumentException
974966
*/
975967
public function havingBetween(?string $key = null, ?array $values = null, ?bool $escape = null): static
@@ -983,7 +975,6 @@ public function havingBetween(?string $key = null, ?array $values = null, ?bool
983975
*
984976
* @param array<array-key, mixed>|null $values The range values searched on
985977
*
986-
*
987978
* @throws InvalidArgumentException
988979
*/
989980
public function orHavingBetween(?string $key = null, ?array $values = null, ?bool $escape = null): static
@@ -997,7 +988,6 @@ public function orHavingBetween(?string $key = null, ?array $values = null, ?boo
997988
*
998989
* @param array<array-key, mixed>|null $values The range values searched on
999990
*
1000-
*
1001991
* @throws InvalidArgumentException
1002992
*/
1003993
public function havingNotBetween(?string $key = null, ?array $values = null, ?bool $escape = null): static
@@ -1011,7 +1001,6 @@ public function havingNotBetween(?string $key = null, ?array $values = null, ?bo
10111001
*
10121002
* @param array<array-key, mixed>|null $values The range values searched on
10131003
*
1014-
*
10151004
* @throws InvalidArgumentException
10161005
*/
10171006
public function orHavingNotBetween(?string $key = null, ?array $values = null, ?bool $escape = null): static
@@ -1033,7 +1022,6 @@ public function orHavingNotBetween(?string $key = null, ?array $values = null, ?
10331022
* @param non-empty-string|null $key
10341023
* @param array<array-key, mixed>|null $values The range values searched on
10351024
*
1036-
*
10371025
* @throws InvalidArgumentException
10381026
*/
10391027
private function whereBetweenHaving(string $qbKey, ?string $key = null, ?array $values = null, bool $not = false, string $type = 'AND ', ?bool $escape = null): static
@@ -1073,7 +1061,6 @@ private function whereBetweenHaving(string $qbKey, ?string $key = null, ?array $
10731061
*
10741062
* @param BaseBuilder|(Closure(BaseBuilder): BaseBuilder) $subquery
10751063
*
1076-
*
10771064
* @throws InvalidArgumentException
10781065
*/
10791066
protected function whereExistsSubquery($subquery, bool $not = false, string $type = 'AND '): static
@@ -1391,7 +1378,6 @@ public function like($field, string $match = '', string $side = 'both', ?bool $e
13911378
*
13921379
* @param list<non-empty-string|RawSql> $fields
13931380
*
1394-
*
13951381
* @throws InvalidArgumentException
13961382
*/
13971383
public function likeAny(array $fields, string $match = '', string $side = 'both', ?bool $escape = null, bool $insensitiveSearch = false): static
@@ -1430,7 +1416,6 @@ public function orLike($field, string $match = '', string $side = 'both', ?bool
14301416
*
14311417
* @param list<non-empty-string|RawSql> $fields
14321418
*
1433-
*
14341419
* @throws InvalidArgumentException
14351420
*/
14361421
public function orLikeAny(array $fields, string $match = '', string $side = 'both', ?bool $escape = null, bool $insensitiveSearch = false): static
@@ -1506,7 +1491,6 @@ public function orNotHavingLike($field, string $match = '', string $side = 'both
15061491
/**
15071492
* @param list<non-empty-string|RawSql> $fields
15081493
*
1509-
*
15101494
* @throws InvalidArgumentException
15111495
*/
15121496
private function likeAnyGroup(array $fields, string $match, string $type, string $side, ?bool $escape, bool $insensitiveSearch, string $caller): static

0 commit comments

Comments
 (0)