|
38 | 38 | * - allow intermingling calls to the builder |
39 | 39 | * - removes the need to use Result object directly in most cases |
40 | 40 | * |
41 | | - * @mixin BaseBuilder |
42 | | - * |
43 | 41 | * @property BaseConnection $db |
| 42 | + * |
| 43 | + * @method $this havingIn(?string $key = null, $values = null, ?bool $escape = null) |
| 44 | + * @method $this havingLike($field, string $match = '', string $side = 'both', ?bool $escape = null, bool $insensitiveSearch = false) |
| 45 | + * @method $this havingNotIn(?string $key = null, $values = null, ?bool $escape = null) |
| 46 | + * @method $this join(string $table, string $cond, string $type = '', ?bool $escape = null) |
| 47 | + * @method $this like($field, string $match = '', string $side = 'both', ?bool $escape = null, bool $insensitiveSearch = false) |
| 48 | + * @method $this limit(?int $value = null, ?int $offset = 0) |
| 49 | + * @method $this notHavingLike($field, string $match = '', string $side = 'both', ?bool $escape = null, bool $insensitiveSearch = false) |
| 50 | + * @method $this notLike($field, string $match = '', string $side = 'both', ?bool $escape = null, bool $insensitiveSearch = false) |
| 51 | + * @method $this offset(int $offset) |
| 52 | + * @method $this orderBy(string $orderBy, string $direction = '', ?bool $escape = null) |
| 53 | + * @method $this orHaving($key, $value = null, ?bool $escape = null) |
| 54 | + * @method $this orHavingIn(?string $key = null, $values = null, ?bool $escape = null) |
| 55 | + * @method $this orHavingLike($field, string $match = '', string $side = 'both', ?bool $escape = null, bool $insensitiveSearch = false) |
| 56 | + * @method $this orHavingNotIn(?string $key = null, $values = null, ?bool $escape = null) |
| 57 | + * @method $this orLike($field, string $match = '', string $side = 'both', ?bool $escape = null, bool $insensitiveSearch = false) |
| 58 | + * @method $this orNotHavingLike($field, string $match = '', string $side = 'both', ?bool $escape = null, bool $insensitiveSearch = false) |
| 59 | + * @method $this orNotLike($field, string $match = '', string $side = 'both', ?bool $escape = null, bool $insensitiveSearch = false) |
| 60 | + * @method $this orWhere($key, $value = null, ?bool $escape = null) |
| 61 | + * @method $this orWhereIn(?string $key = null, $values = null, ?bool $escape = null) |
| 62 | + * @method $this orWhereNotIn(?string $key = null, $values = null, ?bool $escape = null) |
| 63 | + * @method $this select($select = '*', ?bool $escape = null) |
| 64 | + * @method $this selectAvg(string $select = '', string $alias = '') |
| 65 | + * @method $this selectCount(string $select = '', string $alias = '') |
| 66 | + * @method $this selectMax(string $select = '', string $alias = '') |
| 67 | + * @method $this selectMin(string $select = '', string $alias = '') |
| 68 | + * @method $this selectSum(string $select = '', string $alias = '') |
| 69 | + * @method $this where($key, $value = null, ?bool $escape = null) |
| 70 | + * @method $this whereIn(?string $key = null, $values = null, ?bool $escape = null) |
| 71 | + * @method $this whereNotIn(?string $key = null, $values = null, ?bool $escape = null) |
44 | 72 | */ |
45 | 73 | class Model extends BaseModel |
46 | 74 | { |
|
0 commit comments