-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.phpstorm.meta.php
More file actions
109 lines (82 loc) · 2.82 KB
/
.phpstorm.meta.php
File metadata and controls
109 lines (82 loc) · 2.82 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
namespace PHPSTORM_META {
// Helper functions for PHP Datatypes
override(\int8(0), map([
'' => \Nejcc\PhpDatatypes\Scalar\Integers\Signed\Int8::class,
]));
override(\int16(0), map([
'' => \Nejcc\PhpDatatypes\Scalar\Integers\Signed\Int16::class,
]));
override(\int32(0), map([
'' => \Nejcc\PhpDatatypes\Scalar\Integers\Signed\Int32::class,
]));
override(\int64(0), map([
'' => \Nejcc\PhpDatatypes\Scalar\Integers\Signed\Int64::class,
]));
override(\uint8(0), map([
'' => \Nejcc\PhpDatatypes\Scalar\Integers\Unsigned\UInt8::class,
]));
override(\uint16(0), map([
'' => \Nejcc\PhpDatatypes\Scalar\Integers\Unsigned\UInt16::class,
]));
override(\uint32(0), map([
'' => \Nejcc\PhpDatatypes\Scalar\Integers\Unsigned\UInt32::class,
]));
override(\uint64(0), map([
'' => \Nejcc\PhpDatatypes\Scalar\Integers\Unsigned\UInt64::class,
]));
override(\float32(0.0), map([
'' => \Nejcc\PhpDatatypes\Scalar\FloatingPoints\Float32::class,
]));
override(\float64(0.0), map([
'' => \Nejcc\PhpDatatypes\Scalar\FloatingPoints\Float64::class,
]));
override(\char(''), map([
'' => \Nejcc\PhpDatatypes\Scalar\Char::class,
]));
override(\byte(0), map([
'' => \Nejcc\PhpDatatypes\Scalar\Byte::class,
]));
override(\some(0), map([
'' => \Nejcc\PhpDatatypes\Composite\Option::class,
]));
override(\none(), map([
'' => \Nejcc\PhpDatatypes\Composite\Option::class,
]));
override(\option(0), map([
'' => \Nejcc\PhpDatatypes\Composite\Option::class,
]));
override(\ok(0), map([
'' => \Nejcc\PhpDatatypes\Composite\Result::class,
]));
override(\err(0), map([
'' => \Nejcc\PhpDatatypes\Composite\Result::class,
]));
override(\result(function(){}), map([
'' => \Nejcc\PhpDatatypes\Composite\Result::class,
]));
override(\stringArray([]), map([
'' => \Nejcc\PhpDatatypes\Composite\Arrays\StringArray::class,
]));
override(\intArray([]), map([
'' => \Nejcc\PhpDatatypes\Composite\Arrays\IntArray::class,
]));
override(\floatArray([]), map([
'' => \Nejcc\PhpDatatypes\Composite\Arrays\FloatArray::class,
]));
override(\byteSlice([]), map([
'' => \Nejcc\PhpDatatypes\Composite\Arrays\ByteSlice::class,
]));
override(\listData([]), map([
'' => \Nejcc\PhpDatatypes\Composite\ListData::class,
]));
override(\dictionary([]), map([
'' => \Nejcc\PhpDatatypes\Composite\Dictionary::class,
]));
override(\struct([]), map([
'' => \Nejcc\PhpDatatypes\Composite\Struct\Struct::class,
]));
override(\union([], []), map([
'' => \Nejcc\PhpDatatypes\Composite\Union\UnionType::class,
]));
}