-
Notifications
You must be signed in to change notification settings - Fork 62
/
_ide_helper_custom.php
42 lines (33 loc) · 1.11 KB
/
_ide_helper_custom.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
// @phpcs:disabled
namespace Illuminate\Database\Eloquent {
/**
* @method $this cacheFor($time)
* @method $this joinRelationship($relationName, $callback = null, $joinType = 'join', $useAlias = false, bool $disableExtraConditions = false)
* @method $this joinRelationshipUsingAlias($relationName, $callback = null, bool $disableExtraConditions = false)
* @method void ddRawSql()
* @method void toRawSql()
*/
class Builder
{
}
}
namespace Illuminate\Database\Query {
/**
* @method $this joinRelationship($relationName, $callback = null, $joinType = 'join', $useAlias = false, bool $disableExtraConditions = false)
* @method $this joinRelationshipUsingAlias($relationName, $callback = null, bool $disableExtraConditions = false)
* @method void ddRawSql()
* @method void toRawSql()
*/
class Builder
{
}
}
namespace TwigBridge\Facade {
use Illuminate\Contracts\View\Factory;
use Illuminate\Contracts\View\View;
/**
* @method static Factory|View|string display(string $view, array $params = [])
*/
class Twig {}
}