forked from b2broker/eloquent-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathide_helper.php
40 lines (36 loc) · 990 Bytes
/
ide_helper.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
declare(strict_types=1);
namespace Illuminate\Database\Eloquent {
/**
* Class Builder
*
* @package Illuminate\Database\Eloquent
* @method $this withDisabled()
* @method $this withoutDisabled()
* @method $this onlyDisabled()
* @method $this withTrashed()
* @method $this withoutTrashed()
* @method $this onlyTrashed()
* @method static restore()
* @method $this legacyHas($relation, $operator = '>=', $count = 1, $boolean = 'and', \Closure $callback = null)
*/
class Builder
{
}
}
namespace Illuminate\Support {
/**
* @method $this nullable()
* @method $this unique()
* @method $this index()
* @method $this default($value)
* @method $this references(string $field)
* @method $this on(string $table)
* @method $this onUpdate(string $action)
* @method $this onDelete(string $action)
* @method $this after(string $field)
*/
class Fluent
{
}
}