forked from aplus-framework/database
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.phpstorm.meta.php
More file actions
110 lines (109 loc) · 3.74 KB
/
.phpstorm.meta.php
File metadata and controls
110 lines (109 loc) · 3.74 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
110
<?php
/*
* This file is part of Aplus Framework Database Library.
*
* (c) Natan Felles <natanfelles@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPSTORM_META;
registerArgumentsSet(
'manipulation_delete_opt',
\Framework\Database\Manipulation\Delete::OPT_IGNORE,
\Framework\Database\Manipulation\Delete::OPT_LOW_PRIORITY,
\Framework\Database\Manipulation\Delete::OPT_QUICK,
);
expectedArguments(
\Framework\Database\Manipulation\Delete::options(),
0,
argumentsSet('manipulation_delete_opt')
);
registerArgumentsSet(
'manipulation_insert_opt',
\Framework\Database\Manipulation\Insert::OPT_DELAYED,
\Framework\Database\Manipulation\Insert::OPT_HIGH_PRIORITY,
\Framework\Database\Manipulation\Insert::OPT_IGNORE,
\Framework\Database\Manipulation\Insert::OPT_LOW_PRIORITY,
);
expectedArguments(
\Framework\Database\Manipulation\Insert::options(),
0,
argumentsSet('manipulation_insert_opt')
);
registerArgumentsSet(
'manipulation_load_data_opt',
\Framework\Database\Manipulation\LoadData::OPT_CONCURRENT,
\Framework\Database\Manipulation\LoadData::OPT_LOCAL,
\Framework\Database\Manipulation\LoadData::OPT_LOW_PRIORITY,
);
expectedArguments(
\Framework\Database\Manipulation\LoadData::options(),
0,
argumentsSet('manipulation_load_data_opt')
);
registerArgumentsSet(
'manipulation_replace_opt',
\Framework\Database\Manipulation\Replace::OPT_DELAYED,
\Framework\Database\Manipulation\Replace::OPT_LOW_PRIORITY,
);
expectedArguments(
\Framework\Database\Manipulation\Replace::options(),
0,
argumentsSet('manipulation_replace_opt')
);
registerArgumentsSet(
'manipulation_select_opt',
\Framework\Database\Manipulation\Select::OPT_ALL,
\Framework\Database\Manipulation\Select::OPT_DISTINCT,
\Framework\Database\Manipulation\Select::OPT_DISTINCTROW,
\Framework\Database\Manipulation\Select::OPT_HIGH_PRIORITY,
\Framework\Database\Manipulation\Select::OPT_SQL_BIG_RESULT,
\Framework\Database\Manipulation\Select::OPT_SQL_BUFFER_RESULT,
\Framework\Database\Manipulation\Select::OPT_SQL_CACHE,
\Framework\Database\Manipulation\Select::OPT_SQL_CALC_FOUND_ROWS,
\Framework\Database\Manipulation\Select::OPT_SQL_NO_CACHE,
\Framework\Database\Manipulation\Select::OPT_SQL_SMALL_RESULT,
\Framework\Database\Manipulation\Select::OPT_STRAIGHT_JOIN,
);
expectedArguments(
\Framework\Database\Manipulation\Select::options(),
0,
argumentsSet('manipulation_select_opt')
);
registerArgumentsSet(
'manipulation_update_opt',
\Framework\Database\Manipulation\Update::OPT_IGNORE,
\Framework\Database\Manipulation\Update::OPT_LOW_PRIORITY,
);
expectedArguments(
\Framework\Database\Manipulation\Update::options(),
0,
argumentsSet('manipulation_update_opt')
);
registerArgumentsSet(
'manipulation_with_opt',
\Framework\Database\Manipulation\With::OPT_RECURSIVE
);
expectedArguments(
\Framework\Database\Manipulation\With::options(),
0,
argumentsSet('manipulation_with_opt')
);
registerArgumentsSet(
'foreign_key_opt',
\Framework\Database\Definition\Table\Indexes\Keys\ForeignKey::OPT_CASCADE,
\Framework\Database\Definition\Table\Indexes\Keys\ForeignKey::OPT_NO_ACTION,
\Framework\Database\Definition\Table\Indexes\Keys\ForeignKey::OPT_RESTRICT,
\Framework\Database\Definition\Table\Indexes\Keys\ForeignKey::OPT_SET_NULL,
);
expectedArguments(
\Framework\Database\Definition\Table\Indexes\Keys\ForeignKey::onDelete(),
0,
argumentsSet('foreign_key_opt')
);
expectedArguments(
\Framework\Database\Definition\Table\Indexes\Keys\ForeignKey::onUpdate(),
0,
argumentsSet('foreign_key_opt')
);