-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path_ide_helper.php
43 lines (37 loc) · 833 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
41
42
43
<?php
declare(strict_types=1);
/**
* This file is part of the guanguans/ai-commit.
*
* (c) guanguans <[email protected]>
*
* This source file is subject to the MIT license that is bundled.
*/
namespace Illuminate\Support {
/**
* @method static \Illuminate\Support\Collection json(string $json, int $depth = 512, int $options = 0)
*
* @mixin \Illuminate\Support\Collection
*/
final class Collection
{
}
/**
* @method bool jsonValidate(int $depth = 512, int $flags = 0)
*
* @mixin \Illuminate\Support\Stringable
*/
final class Stringable
{
}
/**
* @method static bool jsonValidate(string $json, int $depth = 512, int $flags = 0)
*
* @mixin \Illuminate\Support\Str
*/
final class Str
{
}
}
namespace App\Support {
}