Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/App/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
/**
* Class App
* @package Quantum\App
*
* @method ?int start()
*/
class App
{
Expand Down
3 changes: 3 additions & 0 deletions src/Model/DbModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,13 @@
* @method self criteria(string $column, string $operator, $value = null)
* @method self criterias(...$criterias)
* @method self having(string $column, string $operator, string $value = null)
* @method self groupBy(string $column)
* @method self orderBy(string $column, string $direction)
* @method self offset(int $offset)
* @method self limit(int $limit)
* @method int count()
* @method array<mixed> asArray()
* @method bool truncate()
* @method bool deleteMany()
* @method self joinTo(DbModel $model, bool $switch = true)
* @method self isNull(string $column)
Expand Down
Loading