|
20 | 20 | use CodeIgniter\Database\Exceptions\DatabaseException; |
21 | 21 | use CodeIgniter\Database\Exceptions\DataException; |
22 | 22 | use CodeIgniter\Database\Exceptions\UniqueConstraintViolationException; |
23 | | -use CodeIgniter\Database\JoinClause; |
24 | | -use CodeIgniter\Database\RawSql; |
25 | 23 | use CodeIgniter\Entity\Entity; |
26 | 24 | use CodeIgniter\Exceptions\BadMethodCallException; |
27 | 25 | use CodeIgniter\Exceptions\InvalidArgumentException; |
|
53 | 51 | * @method $this havingIn(?string $key = null, $values = null, ?bool $escape = null) |
54 | 52 | * @method $this havingLike($field, string $match = '', string $side = 'both', ?bool $escape = null, bool $insensitiveSearch = false) |
55 | 53 | * @method $this havingNotIn(?string $key = null, $values = null, ?bool $escape = null) |
| 54 | + * @method $this join(string $table, string $cond, string $type = '', ?bool $escape = null) |
56 | 55 | * @method $this like($field, string $match = '', string $side = 'both', ?bool $escape = null, bool $insensitiveSearch = false) |
57 | 56 | * @method $this limit(?int $value = null, ?int $offset = 0) |
58 | 57 | * @method $this notGroupStart() |
|
82 | 81 | * @method $this selectMax(string $select = '', string $alias = '') |
83 | 82 | * @method $this selectMin(string $select = '', string $alias = '') |
84 | 83 | * @method $this selectSum(string $select = '', string $alias = '') |
85 | | - * @method $this join(string $table, string|Closure(JoinClause):void|RawSql $cond, string $type = '', ?bool $escape = null) |
86 | 84 | * @method $this when($condition, callable $callback, ?callable $defaultCallback = null) |
87 | 85 | * @method $this whenNot($condition, callable $callback, ?callable $defaultCallback = null) |
88 | 86 | * @method $this where($key, $value = null, ?bool $escape = null) |
|
0 commit comments