Skip to content

Commit

Permalink
feat: fix static method where
Browse files Browse the repository at this point in the history
  • Loading branch information
dewanakl committed Apr 9, 2024
1 parent cdfe5d9 commit ace460e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Model/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* Representasi table database.
*
* @method static \Core\Model\Query with(string|array $relational, array $optional = [])
* @method static \Core\Model\Query where(string $column, mixed $value, string $statment = '=', string $agr = 'AND')
* @method static \Core\Model\Query where(string|Closure $column, mixed $value = null, string $statment = '=', string $agr = 'AND')
* @method static \Core\Model\Query whereNull(string $column, string $agr = 'AND')
* @method static \Core\Model\Query whereIn(string $column, array|Model $value, string $agr = 'AND')
* @method static \Core\Model\Query whereNotIn(string $column, array|Model $value, string $agr = 'AND')
Expand Down

0 comments on commit ace460e

Please sign in to comment.