|
2 | 2 |
|
3 | 3 | namespace Neo4j\QueryAPI\Objects;
|
4 | 4 |
|
| 5 | +/** |
| 6 | + * @api |
| 7 | + */ |
5 | 8 | class QueryArguments
|
6 | 9 | {
|
7 | 10 | private int $globalMemory;
|
@@ -56,82 +59,129 @@ public function __construct(
|
56 | 59 | $this->planner = $planner ?? '';
|
57 | 60 | $this->rows = $rows ?? 0;
|
58 | 61 | }
|
| 62 | + /** |
| 63 | + * @api |
| 64 | + */ |
59 | 65 |
|
60 | 66 | public function getGlobalMemory(): int
|
61 | 67 | {
|
62 | 68 | return $this->globalMemory;
|
63 | 69 | }
|
| 70 | + /** |
| 71 | + * @api |
| 72 | + */ |
64 | 73 |
|
65 | 74 | public function getPlannerImpl(): string
|
66 | 75 | {
|
67 | 76 | return $this->plannerImpl;
|
68 | 77 | }
|
| 78 | + /** |
| 79 | + * @api |
| 80 | + */ |
69 | 81 |
|
70 | 82 | public function getMemory(): int
|
71 | 83 | {
|
72 | 84 | return $this->memory;
|
73 | 85 | }
|
| 86 | + /** |
| 87 | + * @api |
| 88 | + */ |
74 | 89 |
|
75 | 90 | public function getStringRepresentation(): string
|
76 | 91 | {
|
77 | 92 | return $this->stringRepresentation;
|
78 | 93 | }
|
| 94 | + /** |
| 95 | + * @api |
| 96 | + */ |
79 | 97 |
|
80 | 98 | public function getRuntime(): string
|
81 | 99 | {
|
82 | 100 | return $this->runtime;
|
83 | 101 | }
|
| 102 | + /** |
| 103 | + * @api |
| 104 | + */ |
84 | 105 |
|
85 | 106 | public function getRuntimeImpl(): string
|
86 | 107 | {
|
87 | 108 | return $this->runtimeImpl;
|
88 | 109 | }
|
| 110 | + /** |
| 111 | + * @api |
| 112 | + */ |
89 | 113 |
|
90 | 114 | public function getDbHits(): int
|
91 | 115 | {
|
92 | 116 | return $this->dbHits;
|
93 | 117 | }
|
| 118 | + /** |
| 119 | + * @api |
| 120 | + */ |
94 | 121 |
|
95 | 122 | public function getBatchSize(): int
|
96 | 123 | {
|
97 | 124 | return $this->batchSize;
|
98 | 125 | }
|
| 126 | + /** |
| 127 | + * @api |
| 128 | + */ |
99 | 129 |
|
100 | 130 | public function getDetails(): string
|
101 | 131 | {
|
102 | 132 | return $this->details;
|
103 | 133 | }
|
| 134 | + /** |
| 135 | + * @api |
| 136 | + */ |
104 | 137 |
|
105 | 138 | public function getPlannerVersion(): string
|
106 | 139 | {
|
107 | 140 | return $this->plannerVersion;
|
108 | 141 | }
|
| 142 | + /** |
| 143 | + * @api |
| 144 | + */ |
109 | 145 |
|
110 | 146 | public function getPipelineInfo(): string
|
111 | 147 | {
|
112 | 148 | return $this->pipelineInfo;
|
113 | 149 | }
|
| 150 | + /** |
| 151 | + * @api |
| 152 | + */ |
114 | 153 |
|
115 | 154 | public function getRuntimeVersion(): string
|
116 | 155 | {
|
117 | 156 | return $this->runtimeVersion;
|
118 | 157 | }
|
| 158 | + /** |
| 159 | + * @api |
| 160 | + */ |
119 | 161 |
|
120 | 162 | public function getId(): int
|
121 | 163 | {
|
122 | 164 | return $this->id;
|
123 | 165 | }
|
| 166 | + /** |
| 167 | + * @api |
| 168 | + */ |
124 | 169 |
|
125 | 170 | public function getEstimatedRows(): float
|
126 | 171 | {
|
127 | 172 | return $this->estimatedRows;
|
128 | 173 | }
|
| 174 | + /** |
| 175 | + * @api |
| 176 | + */ |
129 | 177 |
|
130 | 178 | public function getPlanner(): string
|
131 | 179 | {
|
132 | 180 | return $this->planner;
|
133 | 181 | }
|
134 |
| - |
| 182 | + /** |
| 183 | + * @api |
| 184 | + */ |
135 | 185 | public function getRows(): int
|
136 | 186 | {
|
137 | 187 | return $this->rows;
|
|
0 commit comments