' . "\n"
407 | . $indent . ' ' . "\n"
415 | . $indent . '
' . "\n";
416 | }
417 |
418 | /**
419 | * Render the label for a given dimension name
420 | *
421 | * To have some context available, also
422 | *
423 | * @param $name
424 | * @param $row
425 | * @return string
426 | */
427 | protected function renderDimensionLabel($name, $row)
428 | {
429 | $caption = $row->$name;
430 | if (empty($caption)) {
431 | $caption = '_';
432 | }
433 |
434 | return $this->view->escape($caption);
435 | }
436 |
437 | protected function getDetailsUrl($name, $row)
438 | {
439 | $url = Url::fromPath($this->getDetailsBaseUrl());
440 |
441 | if ($this->cube instanceof IcingaDbCube && $this->cube->hasBaseFilter()) {
442 | /** @var Filter\Rule $baseFilter */
443 | $baseFilter = $this->cube->getBaseFilter();
444 | $url->setFilter($baseFilter);
445 | }
446 |
447 | $urlParams = $url->getParams();
448 |
449 | $dimensions = array_merge(array_keys($this->cube->listDimensions()), $this->cube->listSlices());
450 | $urlParams->add('dimensions', DimensionParams::update($dimensions)->getParams());
451 |
452 | foreach ($this->cube->listDimensionsUpTo($name) as $dimensionName) {
453 | $urlParams->add($this->cube::SLICE_PREFIX . $dimensionName, $row->$dimensionName);
454 | }
455 |
456 | foreach ($this->cube->getSlices() as $key => $val) {
457 | $urlParams->add($this->cube::SLICE_PREFIX . $key, $val);
458 | }
459 |
460 | return $url;
461 | }
462 |
463 | protected function getSliceUrl($name, $row)
464 | {
465 | return $this->view->url()
466 | ->setParam($this->cube::SLICE_PREFIX . $name, $row->$name);
467 | }
468 |
469 | protected function isOuterDimension($name)
470 | {
471 | return $this->reversedDimensions[0] !== $name;
472 | }
473 |
474 | protected function getDimensionClassString($name, $row)
475 | {
476 | return implode(' ', $this->getDimensionClasses($name, $row));
477 | }
478 |
479 | protected function getDimensionClasses($name, $row)
480 | {
481 | return array('cube-dimension' . $this->getLevel($name));
482 | }
483 |
484 | protected function getLevel($name)
485 | {
486 | return $this->dimensionLevels[$name];
487 | }
488 |
489 | /**
490 | * @return string
491 | */
492 | protected function beginContainer()
493 | {
494 | return '
' . "\n";
495 | }
496 |
497 | /**
498 | * @return string
499 | */
500 | protected function endContainer()
501 | {
502 | return '
' . "\n";
503 | }
504 |
505 | /**
506 | * Well... just to be on the safe side
507 | */
508 | public function __destruct()
509 | {
510 | unset($this->cube);
511 | }
512 | }
513 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 2, June 1991
3 |
4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6 | Everyone is permitted to copy and distribute verbatim copies
7 | of this license document, but changing it is not allowed.
8 |
9 | Preamble
10 |
11 | The licenses for most software are designed to take away your
12 | freedom to share and change it. By contrast, the GNU General Public
13 | License is intended to guarantee your freedom to share and change free
14 | software--to make sure the software is free for all its users. This
15 | General Public License applies to most of the Free Software
16 | Foundation's software and to any other program whose authors commit to
17 | using it. (Some other Free Software Foundation software is covered by
18 | the GNU Lesser General Public License instead.) You can apply it to
19 | your programs, too.
20 |
21 | When we speak of free software, we are referring to freedom, not
22 | price. Our General Public Licenses are designed to make sure that you
23 | have the freedom to distribute copies of free software (and charge for
24 | this service if you wish), that you receive source code or can get it
25 | if you want it, that you can change the software or use pieces of it
26 | in new free programs; and that you know you can do these things.
27 |
28 | To protect your rights, we need to make restrictions that forbid
29 | anyone to deny you these rights or to ask you to surrender the rights.
30 | These restrictions translate to certain responsibilities for you if you
31 | distribute copies of the software, or if you modify it.
32 |
33 | For example, if you distribute copies of such a program, whether
34 | gratis or for a fee, you must give the recipients all the rights that
35 | you have. You must make sure that they, too, receive or can get the
36 | source code. And you must show them these terms so they know their
37 | rights.
38 |
39 | We protect your rights with two steps: (1) copyright the software, and
40 | (2) offer you this license which gives you legal permission to copy,
41 | distribute and/or modify the software.
42 |
43 | Also, for each author's protection and ours, we want to make certain
44 | that everyone understands that there is no warranty for this free
45 | software. If the software is modified by someone else and passed on, we
46 | want its recipients to know that what they have is not the original, so
47 | that any problems introduced by others will not reflect on the original
48 | authors' reputations.
49 |
50 | Finally, any free program is threatened constantly by software
51 | patents. We wish to avoid the danger that redistributors of a free
52 | program will individually obtain patent licenses, in effect making the
53 | program proprietary. To prevent this, we have made it clear that any
54 | patent must be licensed for everyone's free use or not licensed at all.
55 |
56 | The precise terms and conditions for copying, distribution and
57 | modification follow.
58 |
59 | GNU GENERAL PUBLIC LICENSE
60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61 |
62 | 0. This License applies to any program or other work which contains
63 | a notice placed by the copyright holder saying it may be distributed
64 | under the terms of this General Public License. The "Program", below,
65 | refers to any such program or work, and a "work based on the Program"
66 | means either the Program or any derivative work under copyright law:
67 | that is to say, a work containing the Program or a portion of it,
68 | either verbatim or with modifications and/or translated into another
69 | language. (Hereinafter, translation is included without limitation in
70 | the term "modification".) Each licensee is addressed as "you".
71 |
72 | Activities other than copying, distribution and modification are not
73 | covered by this License; they are outside its scope. The act of
74 | running the Program is not restricted, and the output from the Program
75 | is covered only if its contents constitute a work based on the
76 | Program (independent of having been made by running the Program).
77 | Whether that is true depends on what the Program does.
78 |
79 | 1. You may copy and distribute verbatim copies of the Program's
80 | source code as you receive it, in any medium, provided that you
81 | conspicuously and appropriately publish on each copy an appropriate
82 | copyright notice and disclaimer of warranty; keep intact all the
83 | notices that refer to this License and to the absence of any warranty;
84 | and give any other recipients of the Program a copy of this License
85 | along with the Program.
86 |
87 | You may charge a fee for the physical act of transferring a copy, and
88 | you may at your option offer warranty protection in exchange for a fee.
89 |
90 | 2. You may modify your copy or copies of the Program or any portion
91 | of it, thus forming a work based on the Program, and copy and
92 | distribute such modifications or work under the terms of Section 1
93 | above, provided that you also meet all of these conditions:
94 |
95 | a) You must cause the modified files to carry prominent notices
96 | stating that you changed the files and the date of any change.
97 |
98 | b) You must cause any work that you distribute or publish, that in
99 | whole or in part contains or is derived from the Program or any
100 | part thereof, to be licensed as a whole at no charge to all third
101 | parties under the terms of this License.
102 |
103 | c) If the modified program normally reads commands interactively
104 | when run, you must cause it, when started running for such
105 | interactive use in the most ordinary way, to print or display an
106 | announcement including an appropriate copyright notice and a
107 | notice that there is no warranty (or else, saying that you provide
108 | a warranty) and that users may redistribute the program under
109 | these conditions, and telling the user how to view a copy of this
110 | License. (Exception: if the Program itself is interactive but
111 | does not normally print such an announcement, your work based on
112 | the Program is not required to print an announcement.)
113 |
114 | These requirements apply to the modified work as a whole. If
115 | identifiable sections of that work are not derived from the Program,
116 | and can be reasonably considered independent and separate works in
117 | themselves, then this License, and its terms, do not apply to those
118 | sections when you distribute them as separate works. But when you
119 | distribute the same sections as part of a whole which is a work based
120 | on the Program, the distribution of the whole must be on the terms of
121 | this License, whose permissions for other licensees extend to the
122 | entire whole, and thus to each and every part regardless of who wrote it.
123 |
124 | Thus, it is not the intent of this section to claim rights or contest
125 | your rights to work written entirely by you; rather, the intent is to
126 | exercise the right to control the distribution of derivative or
127 | collective works based on the Program.
128 |
129 | In addition, mere aggregation of another work not based on the Program
130 | with the Program (or with a work based on the Program) on a volume of
131 | a storage or distribution medium does not bring the other work under
132 | the scope of this License.
133 |
134 | 3. You may copy and distribute the Program (or a work based on it,
135 | under Section 2) in object code or executable form under the terms of
136 | Sections 1 and 2 above provided that you also do one of the following:
137 |
138 | a) Accompany it with the complete corresponding machine-readable
139 | source code, which must be distributed under the terms of Sections
140 | 1 and 2 above on a medium customarily used for software interchange; or,
141 |
142 | b) Accompany it with a written offer, valid for at least three
143 | years, to give any third party, for a charge no more than your
144 | cost of physically performing source distribution, a complete
145 | machine-readable copy of the corresponding source code, to be
146 | distributed under the terms of Sections 1 and 2 above on a medium
147 | customarily used for software interchange; or,
148 |
149 | c) Accompany it with the information you received as to the offer
150 | to distribute corresponding source code. (This alternative is
151 | allowed only for noncommercial distribution and only if you
152 | received the program in object code or executable form with such
153 | an offer, in accord with Subsection b above.)
154 |
155 | The source code for a work means the preferred form of the work for
156 | making modifications to it. For an executable work, complete source
157 | code means all the source code for all modules it contains, plus any
158 | associated interface definition files, plus the scripts used to
159 | control compilation and installation of the executable. However, as a
160 | special exception, the source code distributed need not include
161 | anything that is normally distributed (in either source or binary
162 | form) with the major components (compiler, kernel, and so on) of the
163 | operating system on which the executable runs, unless that component
164 | itself accompanies the executable.
165 |
166 | If distribution of executable or object code is made by offering
167 | access to copy from a designated place, then offering equivalent
168 | access to copy the source code from the same place counts as
169 | distribution of the source code, even though third parties are not
170 | compelled to copy the source along with the object code.
171 |
172 | 4. You may not copy, modify, sublicense, or distribute the Program
173 | except as expressly provided under this License. Any attempt
174 | otherwise to copy, modify, sublicense or distribute the Program is
175 | void, and will automatically terminate your rights under this License.
176 | However, parties who have received copies, or rights, from you under
177 | this License will not have their licenses terminated so long as such
178 | parties remain in full compliance.
179 |
180 | 5. You are not required to accept this License, since you have not
181 | signed it. However, nothing else grants you permission to modify or
182 | distribute the Program or its derivative works. These actions are
183 | prohibited by law if you do not accept this License. Therefore, by
184 | modifying or distributing the Program (or any work based on the
185 | Program), you indicate your acceptance of this License to do so, and
186 | all its terms and conditions for copying, distributing or modifying
187 | the Program or works based on it.
188 |
189 | 6. Each time you redistribute the Program (or any work based on the
190 | Program), the recipient automatically receives a license from the
191 | original licensor to copy, distribute or modify the Program subject to
192 | these terms and conditions. You may not impose any further
193 | restrictions on the recipients' exercise of the rights granted herein.
194 | You are not responsible for enforcing compliance by third parties to
195 | this License.
196 |
197 | 7. If, as a consequence of a court judgment or allegation of patent
198 | infringement or for any other reason (not limited to patent issues),
199 | conditions are imposed on you (whether by court order, agreement or
200 | otherwise) that contradict the conditions of this License, they do not
201 | excuse you from the conditions of this License. If you cannot
202 | distribute so as to satisfy simultaneously your obligations under this
203 | License and any other pertinent obligations, then as a consequence you
204 | may not distribute the Program at all. For example, if a patent
205 | license would not permit royalty-free redistribution of the Program by
206 | all those who receive copies directly or indirectly through you, then
207 | the only way you could satisfy both it and this License would be to
208 | refrain entirely from distribution of the Program.
209 |
210 | If any portion of this section is held invalid or unenforceable under
211 | any particular circumstance, the balance of the section is intended to
212 | apply and the section as a whole is intended to apply in other
213 | circumstances.
214 |
215 | It is not the purpose of this section to induce you to infringe any
216 | patents or other property right claims or to contest validity of any
217 | such claims; this section has the sole purpose of protecting the
218 | integrity of the free software distribution system, which is
219 | implemented by public license practices. Many people have made
220 | generous contributions to the wide range of software distributed
221 | through that system in reliance on consistent application of that
222 | system; it is up to the author/donor to decide if he or she is willing
223 | to distribute software through any other system and a licensee cannot
224 | impose that choice.
225 |
226 | This section is intended to make thoroughly clear what is believed to
227 | be a consequence of the rest of this License.
228 |
229 | 8. If the distribution and/or use of the Program is restricted in
230 | certain countries either by patents or by copyrighted interfaces, the
231 | original copyright holder who places the Program under this License
232 | may add an explicit geographical distribution limitation excluding
233 | those countries, so that distribution is permitted only in or among
234 | countries not thus excluded. In such case, this License incorporates
235 | the limitation as if written in the body of this License.
236 |
237 | 9. The Free Software Foundation may publish revised and/or new versions
238 | of the General Public License from time to time. Such new versions will
239 | be similar in spirit to the present version, but may differ in detail to
240 | address new problems or concerns.
241 |
242 | Each version is given a distinguishing version number. If the Program
243 | specifies a version number of this License which applies to it and "any
244 | later version", you have the option of following the terms and conditions
245 | either of that version or of any later version published by the Free
246 | Software Foundation. If the Program does not specify a version number of
247 | this License, you may choose any version ever published by the Free Software
248 | Foundation.
249 |
250 | 10. If you wish to incorporate parts of the Program into other free
251 | programs whose distribution conditions are different, write to the author
252 | to ask for permission. For software which is copyrighted by the Free
253 | Software Foundation, write to the Free Software Foundation; we sometimes
254 | make exceptions for this. Our decision will be guided by the two goals
255 | of preserving the free status of all derivatives of our free software and
256 | of promoting the sharing and reuse of software generally.
257 |
258 | NO WARRANTY
259 |
260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268 | REPAIR OR CORRECTION.
269 |
270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278 | POSSIBILITY OF SUCH DAMAGES.
279 |
280 | END OF TERMS AND CONDITIONS
281 |
282 | How to Apply These Terms to Your New Programs
283 |
284 | If you develop a new program, and you want it to be of the greatest
285 | possible use to the public, the best way to achieve this is to make it
286 | free software which everyone can redistribute and change under these terms.
287 |
288 | To do so, attach the following notices to the program. It is safest
289 | to attach them to the start of each source file to most effectively
290 | convey the exclusion of warranty; and each file should have at least
291 | the "copyright" line and a pointer to where the full notice is found.
292 |
293 |
294 | Copyright (C)
295 |
296 | This program is free software; you can redistribute it and/or modify
297 | it under the terms of the GNU General Public License as published by
298 | the Free Software Foundation; either version 2 of the License, or
299 | (at your option) any later version.
300 |
301 | This program is distributed in the hope that it will be useful,
302 | but WITHOUT ANY WARRANTY; without even the implied warranty of
303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304 | GNU General Public License for more details.
305 |
306 | You should have received a copy of the GNU General Public License along
307 | with this program; if not, write to the Free Software Foundation, Inc.,
308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
309 |
310 | Also add information on how to contact you by electronic and paper mail.
311 |
312 | If the program is interactive, make it output a short notice like this
313 | when it starts in an interactive mode:
314 |
315 | Gnomovision version 69, Copyright (C) year name of author
316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
317 | This is free software, and you are welcome to redistribute it
318 | under certain conditions; type `show c' for details.
319 |
320 | The hypothetical commands `show w' and `show c' should show the appropriate
321 | parts of the General Public License. Of course, the commands you use may
322 | be called something other than `show w' and `show c'; they could even be
323 | mouse-clicks or menu items--whatever suits your program.
324 |
325 | You should also get your employer (if you work as a programmer) or your
326 | school, if any, to sign a "copyright disclaimer" for the program, if
327 | necessary. Here is a sample; alter the names:
328 |
329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program
330 | `Gnomovision' (which makes passes at compilers) written by James Hacker.
331 |
332 | , 1 April 1989
333 | Ty Coon, President of Vice
334 |
335 | This General Public License does not permit incorporating your program into
336 | proprietary programs. If your program is a subroutine library, you may
337 | consider it more useful to permit linking proprietary applications with the
338 | library. If this is what you want to do, use the GNU Lesser General
339 | Public License instead of this License.
340 |
--------------------------------------------------------------------------------
/phpstan-baseline-standard.neon:
--------------------------------------------------------------------------------
1 | parameters:
2 | ignoreErrors:
3 | -
4 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Controllers\\\\IndexController\\:\\:indexAction\\(\\) has no return type specified\\.$#"
5 | count: 1
6 | path: application/controllers/IndexController.php
7 |
8 | -
9 | message: "#^Cannot call method getName\\(\\) on ipl\\\\Html\\\\Contract\\\\FormSubmitElement\\|null\\.$#"
10 | count: 1
11 | path: application/forms/DimensionsForm.php
12 |
13 | -
14 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Forms\\\\DimensionsForm\\:\\:addDimensionButtons\\(\\) has no return type specified\\.$#"
15 | count: 1
16 | path: application/forms/DimensionsForm.php
17 |
18 | -
19 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Forms\\\\DimensionsForm\\:\\:addDimensionButtons\\(\\) has parameter \\$pos with no type specified\\.$#"
20 | count: 1
21 | path: application/forms/DimensionsForm.php
22 |
23 | -
24 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Forms\\\\DimensionsForm\\:\\:addDimensionButtons\\(\\) has parameter \\$total with no type specified\\.$#"
25 | count: 1
26 | path: application/forms/DimensionsForm.php
27 |
28 | -
29 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Forms\\\\DimensionsForm\\:\\:addSlice\\(\\) has no return type specified\\.$#"
30 | count: 1
31 | path: application/forms/DimensionsForm.php
32 |
33 | -
34 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Forms\\\\DimensionsForm\\:\\:addSlice\\(\\) has parameter \\$value with no type specified\\.$#"
35 | count: 1
36 | path: application/forms/DimensionsForm.php
37 |
38 | -
39 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Forms\\\\DimensionsForm\\:\\:assemble\\(\\) has no return type specified\\.$#"
40 | count: 1
41 | path: application/forms/DimensionsForm.php
42 |
43 | -
44 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Forms\\\\DimensionsForm\\:\\:onSuccess\\(\\) has no return type specified\\.$#"
45 | count: 1
46 | path: application/forms/DimensionsForm.php
47 |
48 | -
49 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Forms\\\\DimensionsForm\\:\\:setCube\\(\\) has no return type specified\\.$#"
50 | count: 1
51 | path: application/forms/DimensionsForm.php
52 |
53 | -
54 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\Forms\\\\DimensionsForm\\:\\:\\$url \\(ipl\\\\Web\\\\Url\\) does not accept mixed\\.$#"
55 | count: 1
56 | path: application/forms/DimensionsForm.php
57 |
58 | -
59 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:addDimension\\(\\) has no return type specified\\.$#"
60 | count: 1
61 | path: library/Cube/Cube.php
62 |
63 | -
64 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:chooseFacts\\(\\) has parameter \\$facts with no value type specified in iterable type array\\.$#"
65 | count: 1
66 | path: library/Cube/Cube.php
67 |
68 | -
69 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:fetchAll\\(\\) has no return type specified\\.$#"
70 | count: 1
71 | path: library/Cube/Cube.php
72 |
73 | -
74 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:flipPositions\\(\\) has no return type specified\\.$#"
75 | count: 1
76 | path: library/Cube/Cube.php
77 |
78 | -
79 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:flipPositions\\(\\) has parameter \\$array with no type specified\\.$#"
80 | count: 1
81 | path: library/Cube/Cube.php
82 |
83 | -
84 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:flipPositions\\(\\) has parameter \\$pos1 with no type specified\\.$#"
85 | count: 1
86 | path: library/Cube/Cube.php
87 |
88 | -
89 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:flipPositions\\(\\) has parameter \\$pos2 with no type specified\\.$#"
90 | count: 1
91 | path: library/Cube/Cube.php
92 |
93 | -
94 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:getDimension\\(\\) has no return type specified\\.$#"
95 | count: 1
96 | path: library/Cube/Cube.php
97 |
98 | -
99 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:getDimension\\(\\) has parameter \\$name with no type specified\\.$#"
100 | count: 1
101 | path: library/Cube/Cube.php
102 |
103 | -
104 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:getDimensionAfter\\(\\) has no return type specified\\.$#"
105 | count: 1
106 | path: library/Cube/Cube.php
107 |
108 | -
109 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:getDimensionAfter\\(\\) has parameter \\$name with no type specified\\.$#"
110 | count: 1
111 | path: library/Cube/Cube.php
112 |
113 | -
114 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:getDimensionsLabel\\(\\) has no return type specified\\.$#"
115 | count: 1
116 | path: library/Cube/Cube.php
117 |
118 | -
119 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:getPathLabel\\(\\) has no return type specified\\.$#"
120 | count: 1
121 | path: library/Cube/Cube.php
122 |
123 | -
124 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:getSlices\\(\\) has no return type specified\\.$#"
125 | count: 1
126 | path: library/Cube/Cube.php
127 |
128 | -
129 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:getSlicesLabel\\(\\) has no return type specified\\.$#"
130 | count: 1
131 | path: library/Cube/Cube.php
132 |
133 | -
134 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:hasDimension\\(\\) has no return type specified\\.$#"
135 | count: 1
136 | path: library/Cube/Cube.php
137 |
138 | -
139 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:hasDimension\\(\\) has parameter \\$name with no type specified\\.$#"
140 | count: 1
141 | path: library/Cube/Cube.php
142 |
143 | -
144 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:hasFact\\(\\) has no return type specified\\.$#"
145 | count: 1
146 | path: library/Cube/Cube.php
147 |
148 | -
149 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:hasFact\\(\\) has parameter \\$name with no type specified\\.$#"
150 | count: 1
151 | path: library/Cube/Cube.php
152 |
153 | -
154 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:hasSlice\\(\\) has no return type specified\\.$#"
155 | count: 1
156 | path: library/Cube/Cube.php
157 |
158 | -
159 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:hasSlice\\(\\) has parameter \\$name with no type specified\\.$#"
160 | count: 1
161 | path: library/Cube/Cube.php
162 |
163 | -
164 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:listAdditionalDimensions\\(\\) has no return type specified\\.$#"
165 | count: 1
166 | path: library/Cube/Cube.php
167 |
168 | -
169 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:listAvailableDimensions\\(\\) has no return type specified\\.$#"
170 | count: 1
171 | path: library/Cube/Cube.php
172 |
173 | -
174 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:listColumns\\(\\) has no return type specified\\.$#"
175 | count: 1
176 | path: library/Cube/Cube.php
177 |
178 | -
179 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:listDimensions\\(\\) has no return type specified\\.$#"
180 | count: 1
181 | path: library/Cube/Cube.php
182 |
183 | -
184 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:listDimensionsUpTo\\(\\) has no return type specified\\.$#"
185 | count: 1
186 | path: library/Cube/Cube.php
187 |
188 | -
189 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:listDimensionsUpTo\\(\\) has parameter \\$name with no type specified\\.$#"
190 | count: 1
191 | path: library/Cube/Cube.php
192 |
193 | -
194 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:listFacts\\(\\) return type has no value type specified in iterable type array\\.$#"
195 | count: 1
196 | path: library/Cube/Cube.php
197 |
198 | -
199 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:listSlices\\(\\) has no return type specified\\.$#"
200 | count: 1
201 | path: library/Cube/Cube.php
202 |
203 | -
204 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:moveDimensionDown\\(\\) has no return type specified\\.$#"
205 | count: 1
206 | path: library/Cube/Cube.php
207 |
208 | -
209 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:moveDimensionDown\\(\\) has parameter \\$name with no type specified\\.$#"
210 | count: 1
211 | path: library/Cube/Cube.php
212 |
213 | -
214 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:moveDimensionUp\\(\\) has no return type specified\\.$#"
215 | count: 1
216 | path: library/Cube/Cube.php
217 |
218 | -
219 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:moveDimensionUp\\(\\) has parameter \\$name with no type specified\\.$#"
220 | count: 1
221 | path: library/Cube/Cube.php
222 |
223 | -
224 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:reOrderDimensions\\(\\) has no return type specified\\.$#"
225 | count: 1
226 | path: library/Cube/Cube.php
227 |
228 | -
229 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:reOrderDimensions\\(\\) has parameter \\$positions with no type specified\\.$#"
230 | count: 1
231 | path: library/Cube/Cube.php
232 |
233 | -
234 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:registerAvailableDimensions\\(\\) has no return type specified\\.$#"
235 | count: 1
236 | path: library/Cube/Cube.php
237 |
238 | -
239 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:removeDimension\\(\\) has no return type specified\\.$#"
240 | count: 1
241 | path: library/Cube/Cube.php
242 |
243 | -
244 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:removeDimension\\(\\) has parameter \\$name with no type specified\\.$#"
245 | count: 1
246 | path: library/Cube/Cube.php
247 |
248 | -
249 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:slice\\(\\) has no return type specified\\.$#"
250 | count: 1
251 | path: library/Cube/Cube.php
252 |
253 | -
254 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:slice\\(\\) has parameter \\$key with no type specified\\.$#"
255 | count: 1
256 | path: library/Cube/Cube.php
257 |
258 | -
259 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:slice\\(\\) has parameter \\$value with no type specified\\.$#"
260 | count: 1
261 | path: library/Cube/Cube.php
262 |
263 | -
264 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:\\$availableDimensions \\(array\\\\) does not accept array\\\\.$#"
265 | count: 1
266 | path: library/Cube/Cube.php
267 |
268 | -
269 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:\\$chosenFacts type has no value type specified in iterable type array\\.$#"
270 | count: 1
271 | path: library/Cube/Cube.php
272 |
273 | -
274 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:\\$renderer has no type specified\\.$#"
275 | count: 1
276 | path: library/Cube/Cube.php
277 |
278 | -
279 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:\\$slices has no type specified\\.$#"
280 | count: 1
281 | path: library/Cube/Cube.php
282 |
283 | -
284 | message: "#^Access to undefined constant Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:DIMENSION_SEVERITY_SORT_PARAM\\.$#"
285 | count: 1
286 | path: library/Cube/CubeRenderer.php
287 |
288 | -
289 | message: "#^Call to an undefined method Icinga\\\\Module\\\\Cube\\\\Cube\\:\\:getSortBy\\(\\)\\.$#"
290 | count: 1
291 | path: library/Cube/CubeRenderer.php
292 |
293 | -
294 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:beginDimension\\(\\) has no return type specified\\.$#"
295 | count: 1
296 | path: library/Cube/CubeRenderer.php
297 |
298 | -
299 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:beginDimension\\(\\) has parameter \\$name with no type specified\\.$#"
300 | count: 1
301 | path: library/Cube/CubeRenderer.php
302 |
303 | -
304 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:beginDimension\\(\\) has parameter \\$row with no type specified\\.$#"
305 | count: 1
306 | path: library/Cube/CubeRenderer.php
307 |
308 | -
309 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:beginDimensionsForRow\\(\\) has no return type specified\\.$#"
310 | count: 1
311 | path: library/Cube/CubeRenderer.php
312 |
313 | -
314 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:beginDimensionsForRow\\(\\) has parameter \\$row with no type specified\\.$#"
315 | count: 1
316 | path: library/Cube/CubeRenderer.php
317 |
318 | -
319 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:beginDimensionsUpFrom\\(\\) has no return type specified\\.$#"
320 | count: 1
321 | path: library/Cube/CubeRenderer.php
322 |
323 | -
324 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:beginDimensionsUpFrom\\(\\) has parameter \\$dimension with no type specified\\.$#"
325 | count: 1
326 | path: library/Cube/CubeRenderer.php
327 |
328 | -
329 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:beginDimensionsUpFrom\\(\\) has parameter \\$row with no type specified\\.$#"
330 | count: 1
331 | path: library/Cube/CubeRenderer.php
332 |
333 | -
334 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:closeDimension\\(\\) has no return type specified\\.$#"
335 | count: 1
336 | path: library/Cube/CubeRenderer.php
337 |
338 | -
339 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:closeDimension\\(\\) has parameter \\$name with no type specified\\.$#"
340 | count: 1
341 | path: library/Cube/CubeRenderer.php
342 |
343 | -
344 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:closeDimensions\\(\\) has no return type specified\\.$#"
345 | count: 1
346 | path: library/Cube/CubeRenderer.php
347 |
348 | -
349 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:closeDimensionsDownTo\\(\\) has no return type specified\\.$#"
350 | count: 1
351 | path: library/Cube/CubeRenderer.php
352 |
353 | -
354 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:closeDimensionsDownTo\\(\\) has parameter \\$name with no type specified\\.$#"
355 | count: 1
356 | path: library/Cube/CubeRenderer.php
357 |
358 | -
359 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:closeDimensionsForRow\\(\\) has no return type specified\\.$#"
360 | count: 1
361 | path: library/Cube/CubeRenderer.php
362 |
363 | -
364 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:closeDimensionsForRow\\(\\) has parameter \\$row with no type specified\\.$#"
365 | count: 1
366 | path: library/Cube/CubeRenderer.php
367 |
368 | -
369 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:extractFacts\\(\\) has parameter \\$row with no type specified\\.$#"
370 | count: 1
371 | path: library/Cube/CubeRenderer.php
372 |
373 | -
374 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getDetailsUrl\\(\\) has no return type specified\\.$#"
375 | count: 1
376 | path: library/Cube/CubeRenderer.php
377 |
378 | -
379 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getDetailsUrl\\(\\) has parameter \\$name with no type specified\\.$#"
380 | count: 1
381 | path: library/Cube/CubeRenderer.php
382 |
383 | -
384 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getDetailsUrl\\(\\) has parameter \\$row with no type specified\\.$#"
385 | count: 1
386 | path: library/Cube/CubeRenderer.php
387 |
388 | -
389 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getDimensionClassString\\(\\) has no return type specified\\.$#"
390 | count: 1
391 | path: library/Cube/CubeRenderer.php
392 |
393 | -
394 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getDimensionClassString\\(\\) has parameter \\$name with no type specified\\.$#"
395 | count: 1
396 | path: library/Cube/CubeRenderer.php
397 |
398 | -
399 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getDimensionClassString\\(\\) has parameter \\$row with no type specified\\.$#"
400 | count: 1
401 | path: library/Cube/CubeRenderer.php
402 |
403 | -
404 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getDimensionClasses\\(\\) has no return type specified\\.$#"
405 | count: 1
406 | path: library/Cube/CubeRenderer.php
407 |
408 | -
409 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getDimensionClasses\\(\\) has parameter \\$name with no type specified\\.$#"
410 | count: 1
411 | path: library/Cube/CubeRenderer.php
412 |
413 | -
414 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getDimensionClasses\\(\\) has parameter \\$row with no type specified\\.$#"
415 | count: 1
416 | path: library/Cube/CubeRenderer.php
417 |
418 | -
419 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getIndent\\(\\) has no return type specified\\.$#"
420 | count: 1
421 | path: library/Cube/CubeRenderer.php
422 |
423 | -
424 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getIndent\\(\\) has parameter \\$name with no type specified\\.$#"
425 | count: 1
426 | path: library/Cube/CubeRenderer.php
427 |
428 | -
429 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getLevel\\(\\) has no return type specified\\.$#"
430 | count: 1
431 | path: library/Cube/CubeRenderer.php
432 |
433 | -
434 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getLevel\\(\\) has parameter \\$name with no type specified\\.$#"
435 | count: 1
436 | path: library/Cube/CubeRenderer.php
437 |
438 | -
439 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getSliceUrl\\(\\) has no return type specified\\.$#"
440 | count: 1
441 | path: library/Cube/CubeRenderer.php
442 |
443 | -
444 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getSliceUrl\\(\\) has parameter \\$name with no type specified\\.$#"
445 | count: 1
446 | path: library/Cube/CubeRenderer.php
447 |
448 | -
449 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:getSliceUrl\\(\\) has parameter \\$row with no type specified\\.$#"
450 | count: 1
451 | path: library/Cube/CubeRenderer.php
452 |
453 | -
454 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:initialize\\(\\) has no return type specified\\.$#"
455 | count: 1
456 | path: library/Cube/CubeRenderer.php
457 |
458 | -
459 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:isOuterDimension\\(\\) has no return type specified\\.$#"
460 | count: 1
461 | path: library/Cube/CubeRenderer.php
462 |
463 | -
464 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:isOuterDimension\\(\\) has parameter \\$name with no type specified\\.$#"
465 | count: 1
466 | path: library/Cube/CubeRenderer.php
467 |
468 | -
469 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:render\\(\\) has no return type specified\\.$#"
470 | count: 1
471 | path: library/Cube/CubeRenderer.php
472 |
473 | -
474 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:renderDimensionLabel\\(\\) has parameter \\$name with no type specified\\.$#"
475 | count: 1
476 | path: library/Cube/CubeRenderer.php
477 |
478 | -
479 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:renderDimensionLabel\\(\\) has parameter \\$row with no type specified\\.$#"
480 | count: 1
481 | path: library/Cube/CubeRenderer.php
482 |
483 | -
484 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:renderFacts\\(\\) has parameter \\$facts with no type specified\\.$#"
485 | count: 1
486 | path: library/Cube/CubeRenderer.php
487 |
488 | -
489 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:renderRow\\(\\) has no return type specified\\.$#"
490 | count: 1
491 | path: library/Cube/CubeRenderer.php
492 |
493 | -
494 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:renderRow\\(\\) has parameter \\$row with no type specified\\.$#"
495 | count: 1
496 | path: library/Cube/CubeRenderer.php
497 |
498 | -
499 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:sortBySeverity\\(\\) has parameter \\$results with no value type specified in iterable type array\\.$#"
500 | count: 1
501 | path: library/Cube/CubeRenderer.php
502 |
503 | -
504 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:\\$dimensionLevels type has no value type specified in iterable type array\\.$#"
505 | count: 1
506 | path: library/Cube/CubeRenderer.php
507 |
508 | -
509 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:\\$dimensionOrder type has no value type specified in iterable type array\\.$#"
510 | count: 1
511 | path: library/Cube/CubeRenderer.php
512 |
513 | -
514 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:\\$dimensions type has no value type specified in iterable type array\\.$#"
515 | count: 1
516 | path: library/Cube/CubeRenderer.php
517 |
518 | -
519 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:\\$facts has no type specified\\.$#"
520 | count: 1
521 | path: library/Cube/CubeRenderer.php
522 |
523 | -
524 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:\\$reversedDimensions type has no value type specified in iterable type array\\.$#"
525 | count: 1
526 | path: library/Cube/CubeRenderer.php
527 |
528 | -
529 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\:\\:\\$started has no type specified\\.$#"
530 | count: 1
531 | path: library/Cube/CubeRenderer.php
532 |
533 | -
534 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\HostStatusCubeRenderer\\:\\:getDimensionClasses\\(\\) has no return type specified\\.$#"
535 | count: 1
536 | path: library/Cube/CubeRenderer/HostStatusCubeRenderer.php
537 |
538 | -
539 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\HostStatusCubeRenderer\\:\\:getDimensionClasses\\(\\) has parameter \\$name with no type specified\\.$#"
540 | count: 1
541 | path: library/Cube/CubeRenderer/HostStatusCubeRenderer.php
542 |
543 | -
544 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\HostStatusCubeRenderer\\:\\:getDimensionClasses\\(\\) has parameter \\$row with no type specified\\.$#"
545 | count: 1
546 | path: library/Cube/CubeRenderer/HostStatusCubeRenderer.php
547 |
548 | -
549 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\HostStatusCubeRenderer\\:\\:makeBadgeHtml\\(\\) has no return type specified\\.$#"
550 | count: 1
551 | path: library/Cube/CubeRenderer/HostStatusCubeRenderer.php
552 |
553 | -
554 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\HostStatusCubeRenderer\\:\\:makeBadgeHtml\\(\\) has parameter \\$class with no type specified\\.$#"
555 | count: 1
556 | path: library/Cube/CubeRenderer/HostStatusCubeRenderer.php
557 |
558 | -
559 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\HostStatusCubeRenderer\\:\\:makeBadgeHtml\\(\\) has parameter \\$count with no type specified\\.$#"
560 | count: 1
561 | path: library/Cube/CubeRenderer/HostStatusCubeRenderer.php
562 |
563 | -
564 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\HostStatusCubeRenderer\\:\\:renderDimensionLabel\\(\\) has parameter \\$name with no type specified\\.$#"
565 | count: 1
566 | path: library/Cube/CubeRenderer/HostStatusCubeRenderer.php
567 |
568 | -
569 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\HostStatusCubeRenderer\\:\\:renderDimensionLabel\\(\\) has parameter \\$row with no type specified\\.$#"
570 | count: 1
571 | path: library/Cube/CubeRenderer/HostStatusCubeRenderer.php
572 |
573 | -
574 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\HostStatusCubeRenderer\\:\\:renderFacts\\(\\) has parameter \\$facts with no type specified\\.$#"
575 | count: 1
576 | path: library/Cube/CubeRenderer/HostStatusCubeRenderer.php
577 |
578 | -
579 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\ServiceStatusCubeRenderer\\:\\:getDimensionClasses\\(\\) has no return type specified\\.$#"
580 | count: 1
581 | path: library/Cube/CubeRenderer/ServiceStatusCubeRenderer.php
582 |
583 | -
584 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\ServiceStatusCubeRenderer\\:\\:getDimensionClasses\\(\\) has parameter \\$name with no type specified\\.$#"
585 | count: 1
586 | path: library/Cube/CubeRenderer/ServiceStatusCubeRenderer.php
587 |
588 | -
589 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\ServiceStatusCubeRenderer\\:\\:getDimensionClasses\\(\\) has parameter \\$row with no type specified\\.$#"
590 | count: 1
591 | path: library/Cube/CubeRenderer/ServiceStatusCubeRenderer.php
592 |
593 | -
594 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\ServiceStatusCubeRenderer\\:\\:makeBadgeHtml\\(\\) has no return type specified\\.$#"
595 | count: 1
596 | path: library/Cube/CubeRenderer/ServiceStatusCubeRenderer.php
597 |
598 | -
599 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\ServiceStatusCubeRenderer\\:\\:makeBadgeHtml\\(\\) has parameter \\$class with no type specified\\.$#"
600 | count: 1
601 | path: library/Cube/CubeRenderer/ServiceStatusCubeRenderer.php
602 |
603 | -
604 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\ServiceStatusCubeRenderer\\:\\:makeBadgeHtml\\(\\) has parameter \\$count with no type specified\\.$#"
605 | count: 1
606 | path: library/Cube/CubeRenderer/ServiceStatusCubeRenderer.php
607 |
608 | -
609 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\ServiceStatusCubeRenderer\\:\\:renderDimensionLabel\\(\\) has parameter \\$name with no type specified\\.$#"
610 | count: 1
611 | path: library/Cube/CubeRenderer/ServiceStatusCubeRenderer.php
612 |
613 | -
614 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\ServiceStatusCubeRenderer\\:\\:renderDimensionLabel\\(\\) has parameter \\$row with no type specified\\.$#"
615 | count: 1
616 | path: library/Cube/CubeRenderer/ServiceStatusCubeRenderer.php
617 |
618 | -
619 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\CubeRenderer\\\\ServiceStatusCubeRenderer\\:\\:renderFacts\\(\\) has parameter \\$facts with no type specified\\.$#"
620 | count: 1
621 | path: library/Cube/CubeRenderer/ServiceStatusCubeRenderer.php
622 |
623 | -
624 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\DimensionParams\\:\\:add\\(\\) has parameter \\$dimension with no type specified\\.$#"
625 | count: 1
626 | path: library/Cube/DimensionParams.php
627 |
628 | -
629 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\DimensionParams\\:\\:fromArray\\(\\) has no return type specified\\.$#"
630 | count: 1
631 | path: library/Cube/DimensionParams.php
632 |
633 | -
634 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\DimensionParams\\:\\:fromArray\\(\\) has parameter \\$dimensions with no value type specified in iterable type array\\.$#"
635 | count: 1
636 | path: library/Cube/DimensionParams.php
637 |
638 | -
639 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\DimensionParams\\:\\:fromString\\(\\) has no return type specified\\.$#"
640 | count: 1
641 | path: library/Cube/DimensionParams.php
642 |
643 | -
644 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\DimensionParams\\:\\:fromString\\(\\) has parameter \\$dimensions with no type specified\\.$#"
645 | count: 1
646 | path: library/Cube/DimensionParams.php
647 |
648 | -
649 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\DimensionParams\\:\\:fromUrl\\(\\) has no return type specified\\.$#"
650 | count: 1
651 | path: library/Cube/DimensionParams.php
652 |
653 | -
654 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\DimensionParams\\:\\:getDimensions\\(\\) return type has no value type specified in iterable type array\\.$#"
655 | count: 1
656 | path: library/Cube/DimensionParams.php
657 |
658 | -
659 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\DimensionParams\\:\\:update\\(\\) has parameter \\$dimensions with no type specified\\.$#"
660 | count: 1
661 | path: library/Cube/DimensionParams.php
662 |
663 | -
664 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\DimensionParams\\:\\:\\$dimensions type has no value type specified in iterable type array\\.$#"
665 | count: 1
666 | path: library/Cube/DimensionParams.php
667 |
668 | -
669 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Hook\\\\ActionsHook\\:\\:makeUrl\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#"
670 | count: 1
671 | path: library/Cube/Hook/ActionsHook.php
672 |
673 | -
674 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Hook\\\\IcingaDbActionsHook\\:\\:makeUrl\\(\\) has parameter \\$params with no value type specified in iterable type array\\.$#"
675 | count: 1
676 | path: library/Cube/Hook/IcingaDbActionsHook.php
677 |
678 | -
679 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\CustomVariableDimension\\:\\:__construct\\(\\) has parameter \\$name with no type specified\\.$#"
680 | count: 1
681 | path: library/Cube/IcingaDb/CustomVariableDimension.php
682 |
683 | -
684 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\CustomVariableDimension\\:\\:\\$label has no type specified\\.$#"
685 | count: 1
686 | path: library/Cube/IcingaDb/CustomVariableDimension.php
687 |
688 | -
689 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\CustomVariableDimension\\:\\:\\$wantNull has no type specified\\.$#"
690 | count: 1
691 | path: library/Cube/IcingaDb/CustomVariableDimension.php
692 |
693 | -
694 | message: "#^Cannot access property \\$customvar_flat on mixed\\.$#"
695 | count: 2
696 | path: library/Cube/IcingaDb/IcingaDbCube.php
697 |
698 | -
699 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbCube\\:\\:fetchAll\\(\\) has no return type specified\\.$#"
700 | count: 1
701 | path: library/Cube/IcingaDb/IcingaDbCube.php
702 |
703 | -
704 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbCube\\:\\:fetchHostVariableDimensions\\(\\) return type has no value type specified in iterable type array\\.$#"
705 | count: 1
706 | path: library/Cube/IcingaDb/IcingaDbCube.php
707 |
708 | -
709 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbCube\\:\\:fetchServiceVariableDimensions\\(\\) return type has no value type specified in iterable type array\\.$#"
710 | count: 1
711 | path: library/Cube/IcingaDb/IcingaDbCube.php
712 |
713 | -
714 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbCube\\:\\:getAvailableFactColumns\\(\\) return type has no value type specified in iterable type array\\.$#"
715 | count: 1
716 | path: library/Cube/IcingaDb/IcingaDbCube.php
717 |
718 | -
719 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbCube\\:\\:getObjectsFilter\\(\\) has no return type specified\\.$#"
720 | count: 1
721 | path: library/Cube/IcingaDb/IcingaDbCube.php
722 |
723 | -
724 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbCube\\:\\:getSortBy\\(\\) return type has no value type specified in iterable type array\\.$#"
725 | count: 1
726 | path: library/Cube/IcingaDb/IcingaDbCube.php
727 |
728 | -
729 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbCube\\:\\:prepareFullQuery\\(\\) has no return type specified\\.$#"
730 | count: 1
731 | path: library/Cube/IcingaDb/IcingaDbCube.php
732 |
733 | -
734 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbCube\\:\\:prepareRollupQuery\\(\\) has no return type specified\\.$#"
735 | count: 1
736 | path: library/Cube/IcingaDb/IcingaDbCube.php
737 |
738 | -
739 | message: "#^Parameter \\#1 \\$filter of method ipl\\\\Orm\\\\Query\\:\\:filter\\(\\) expects ipl\\\\Stdlib\\\\Filter\\\\Rule, ipl\\\\Stdlib\\\\Filter\\\\Rule\\|null given\\.$#"
740 | count: 1
741 | path: library/Cube/IcingaDb/IcingaDbCube.php
742 |
743 | -
744 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbCube\\:\\:\\$objectsFilter has no type specified\\.$#"
745 | count: 1
746 | path: library/Cube/IcingaDb/IcingaDbCube.php
747 |
748 | -
749 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbCube\\:\\:\\$sortBy \\(array\\) does not accept mixed\\.$#"
750 | count: 1
751 | path: library/Cube/IcingaDb/IcingaDbCube.php
752 |
753 | -
754 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbCube\\:\\:\\$sortBy type has no value type specified in iterable type array\\.$#"
755 | count: 1
756 | path: library/Cube/IcingaDb/IcingaDbCube.php
757 |
758 | -
759 | message: "#^Cannot access property \\$host on mixed\\.$#"
760 | count: 1
761 | path: library/Cube/IcingaDb/IcingaDbHostStatusCube.php
762 |
763 | -
764 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbHostStatusCube\\:\\:getAvailableFactColumns\\(\\) return type has no value type specified in iterable type array\\.$#"
765 | count: 1
766 | path: library/Cube/IcingaDb/IcingaDbHostStatusCube.php
767 |
768 | -
769 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbHostStatusCube\\:\\:listAvailableDimensions\\(\\) has no return type specified\\.$#"
770 | count: 1
771 | path: library/Cube/IcingaDb/IcingaDbHostStatusCube.php
772 |
773 | -
774 | message: "#^Cannot access property \\$host_name on mixed\\.$#"
775 | count: 1
776 | path: library/Cube/IcingaDb/IcingaDbServiceStatusCube.php
777 |
778 | -
779 | message: "#^Cannot access property \\$service_name on mixed\\.$#"
780 | count: 1
781 | path: library/Cube/IcingaDb/IcingaDbServiceStatusCube.php
782 |
783 | -
784 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbServiceStatusCube\\:\\:getAvailableFactColumns\\(\\) return type has no value type specified in iterable type array\\.$#"
785 | count: 1
786 | path: library/Cube/IcingaDb/IcingaDbServiceStatusCube.php
787 |
788 | -
789 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\IcingaDb\\\\IcingaDbServiceStatusCube\\:\\:listAvailableDimensions\\(\\) has no return type specified\\.$#"
790 | count: 1
791 | path: library/Cube/IcingaDb/IcingaDbServiceStatusCube.php
792 |
793 | -
794 | message: "#^Call to an undefined method Icinga\\\\Module\\\\Cube\\\\Ido\\\\ZfSelectWrapper\\:\\:joinLeft\\(\\)\\.$#"
795 | count: 1
796 | path: library/Cube/Ido/CustomVarDimension.php
797 |
798 | -
799 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\CustomVarDimension\\:\\:__construct\\(\\) has parameter \\$varName with no type specified\\.$#"
800 | count: 1
801 | path: library/Cube/Ido/CustomVarDimension.php
802 |
803 | -
804 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\CustomVarDimension\\:\\:safeVarname\\(\\) has no return type specified\\.$#"
805 | count: 1
806 | path: library/Cube/Ido/CustomVarDimension.php
807 |
808 | -
809 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\CustomVarDimension\\:\\:safeVarname\\(\\) has parameter \\$name with no type specified\\.$#"
810 | count: 1
811 | path: library/Cube/Ido/CustomVarDimension.php
812 |
813 | -
814 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\Ido\\\\CustomVarDimension\\:\\:\\$type \\(string\\) does not accept string\\|null\\.$#"
815 | count: 1
816 | path: library/Cube/Ido/CustomVarDimension.php
817 |
818 | -
819 | message: "#^Call to an undefined method Icinga\\\\Data\\\\ConnectionInterface\\:\\:getResource\\(\\)\\.$#"
820 | count: 1
821 | path: library/Cube/Ido/DataView/Hoststatus.php
822 |
823 | -
824 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\DataView\\\\Hoststatus\\:\\:__construct\\(\\) has parameter \\$columns with no value type specified in iterable type array\\.$#"
825 | count: 1
826 | path: library/Cube/Ido/DataView/Hoststatus.php
827 |
828 | -
829 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\DbCube\\:\\:chooseFacts\\(\\) has parameter \\$facts with no value type specified in iterable type array\\.$#"
830 | count: 1
831 | path: library/Cube/Ido/DbCube.php
832 |
833 | -
834 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\DbCube\\:\\:fetchAll\\(\\) return type has no value type specified in iterable type array\\.$#"
835 | count: 1
836 | path: library/Cube/Ido/DbCube.php
837 |
838 | -
839 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\DbCube\\:\\:fetchAll\\(\\) should return array but returns array\\|null\\.$#"
840 | count: 1
841 | path: library/Cube/Ido/DbCube.php
842 |
843 | -
844 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\DbCube\\:\\:getAvailableFactColumns\\(\\) return type has no value type specified in iterable type array\\.$#"
845 | count: 1
846 | path: library/Cube/Ido/DbCube.php
847 |
848 | -
849 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\DbCube\\:\\:setDbName\\(\\) has parameter \\$name with no type specified\\.$#"
850 | count: 1
851 | path: library/Cube/Ido/DbCube.php
852 |
853 | -
854 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\Ido\\\\DbCube\\:\\:\\$factColumns type has no value type specified in iterable type array\\.$#"
855 | count: 1
856 | path: library/Cube/Ido/DbCube.php
857 |
858 | -
859 | message: "#^Argument of an invalid type array\\\\|false supplied for foreach, only iterables are supported\\.$#"
860 | count: 1
861 | path: library/Cube/Ido/IdoCube.php
862 |
863 | -
864 | message: "#^Cannot call method getDbAdapter\\(\\) on mixed\\.$#"
865 | count: 1
866 | path: library/Cube/Ido/IdoCube.php
867 |
868 | -
869 | message: "#^Cannot call method getRestrictions\\(\\) on Icinga\\\\User\\|null\\.$#"
870 | count: 1
871 | path: library/Cube/Ido/IdoCube.php
872 |
873 | -
874 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\IdoCube\\:\\:filterProtectedCustomvars\\(\\) should return array\\ but returns array\\|false\\.$#"
875 | count: 1
876 | path: library/Cube/Ido/IdoCube.php
877 |
878 | -
879 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\IdoCube\\:\\:getIdoVersion\\(\\) should return string but returns string\\|false\\|null\\.$#"
880 | count: 1
881 | path: library/Cube/Ido/IdoCube.php
882 |
883 | -
884 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\IdoCube\\:\\:getMonitoringRestriction\\(\\) has no return type specified\\.$#"
885 | count: 1
886 | path: library/Cube/Ido/IdoCube.php
887 |
888 | -
889 | message: "#^Parameter \\#1 \\$connection of method Icinga\\\\Module\\\\Cube\\\\Ido\\\\DbCube\\:\\:setConnection\\(\\) expects Icinga\\\\Data\\\\Db\\\\DbConnection, mixed given\\.$#"
890 | count: 1
891 | path: library/Cube/Ido/IdoCube.php
892 |
893 | -
894 | message: "#^Parameter \\#2 \\$subject of function preg_split expects string, mixed given\\.$#"
895 | count: 1
896 | path: library/Cube/Ido/IdoCube.php
897 |
898 | -
899 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\Ido\\\\IdoCube\\:\\:\\$availableFacts type has no value type specified in iterable type array\\.$#"
900 | count: 1
901 | path: library/Cube/Ido/IdoCube.php
902 |
903 | -
904 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\Ido\\\\IdoCube\\:\\:\\$idoVersion \\(string\\) does not accept string\\|false\\|null\\.$#"
905 | count: 1
906 | path: library/Cube/Ido/IdoCube.php
907 |
908 | -
909 | message: "#^Call to an undefined method Icinga\\\\Data\\\\SimpleQuery\\:\\:getSelectQuery\\(\\)\\.$#"
910 | count: 2
911 | path: library/Cube/Ido/IdoHostStatusCube.php
912 |
913 | -
914 | message: "#^Call to an undefined method Icinga\\\\Data\\\\SimpleQuery\\:\\:requireColumn\\(\\)\\.$#"
915 | count: 1
916 | path: library/Cube/Ido/IdoHostStatusCube.php
917 |
918 | -
919 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\IdoHostStatusCube\\:\\:getAvailableFactColumns\\(\\) return type has no value type specified in iterable type array\\.$#"
920 | count: 1
921 | path: library/Cube/Ido/IdoHostStatusCube.php
922 |
923 | -
924 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\IdoHostStatusCube\\:\\:listAvailableDimensions\\(\\) return type has no value type specified in iterable type array\\.$#"
925 | count: 1
926 | path: library/Cube/Ido/IdoHostStatusCube.php
927 |
928 | -
929 | message: "#^Call to an undefined method Icinga\\\\Data\\\\SimpleQuery\\:\\:getSelectQuery\\(\\)\\.$#"
930 | count: 2
931 | path: library/Cube/Ido/IdoServiceStatusCube.php
932 |
933 | -
934 | message: "#^Call to an undefined method Icinga\\\\Data\\\\SimpleQuery\\:\\:requireColumn\\(\\)\\.$#"
935 | count: 1
936 | path: library/Cube/Ido/IdoServiceStatusCube.php
937 |
938 | -
939 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\IdoServiceStatusCube\\:\\:getAvailableFactColumns\\(\\) return type has no value type specified in iterable type array\\.$#"
940 | count: 1
941 | path: library/Cube/Ido/IdoServiceStatusCube.php
942 |
943 | -
944 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\IdoServiceStatusCube\\:\\:listAvailableDimensions\\(\\) return type has no value type specified in iterable type array\\.$#"
945 | count: 1
946 | path: library/Cube/Ido/IdoServiceStatusCube.php
947 |
948 | -
949 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\Query\\\\HoststatusQuery\\:\\:joinSubQuery\\(\\) return type has no value type specified in iterable type array\\.$#"
950 | count: 1
951 | path: library/Cube/Ido/Query/HoststatusQuery.php
952 |
953 | -
954 | message: "#^Property Icinga\\\\Module\\\\Cube\\\\Ido\\\\Query\\\\HoststatusQuery\\:\\:\\$subQueryTargets type has no value type specified in iterable type array\\.$#"
955 | count: 1
956 | path: library/Cube/Ido/Query/HoststatusQuery.php
957 |
958 | -
959 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\ZfSelectWrapper\\:\\:__call\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#"
960 | count: 1
961 | path: library/Cube/Ido/ZfSelectWrapper.php
962 |
963 | -
964 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\ZfSelectWrapper\\:\\:columns\\(\\) has no return type specified\\.$#"
965 | count: 1
966 | path: library/Cube/Ido/ZfSelectWrapper.php
967 |
968 | -
969 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\ZfSelectWrapper\\:\\:columns\\(\\) has parameter \\$cols with no type specified\\.$#"
970 | count: 1
971 | path: library/Cube/Ido/ZfSelectWrapper.php
972 |
973 | -
974 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\ZfSelectWrapper\\:\\:columns\\(\\) has parameter \\$correlationName with no type specified\\.$#"
975 | count: 1
976 | path: library/Cube/Ido/ZfSelectWrapper.php
977 |
978 | -
979 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\ZfSelectWrapper\\:\\:reset\\(\\) has no return type specified\\.$#"
980 | count: 1
981 | path: library/Cube/Ido/ZfSelectWrapper.php
982 |
983 | -
984 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Ido\\\\ZfSelectWrapper\\:\\:reset\\(\\) has parameter \\$part with no type specified\\.$#"
985 | count: 1
986 | path: library/Cube/Ido/ZfSelectWrapper.php
987 |
988 | -
989 | message: "#^Parameter \\#1 \\$rule of method ipl\\\\Stdlib\\\\Filter\\\\Chain\\:\\:add\\(\\) expects ipl\\\\Stdlib\\\\Filter\\\\Rule, ipl\\\\Stdlib\\\\Filter\\\\Rule\\|null given\\.$#"
990 | count: 1
991 | path: library/Cube/ProvidedHook/Cube/IcingaDbActions.php
992 |
993 | -
994 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Web\\\\Controller\\:\\:hasLegacyDimensionParams\\(\\) has parameter \\$dimensions with no value type specified in iterable type array\\.$#"
995 | count: 1
996 | path: library/Cube/Web/Controller.php
997 |
998 | -
999 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Web\\\\Controller\\:\\:transformLegacyDimensionParamsAndRedirect\\(\\) has parameter \\$legacyDimensions with no value type specified in iterable type array\\.$#"
1000 | count: 1
1001 | path: library/Cube/Web/Controller.php
1002 |
1003 | -
1004 | message: "#^Parameter \\#2 \\$default of method Icinga\\\\Web\\\\UrlParams\\:\\:shift\\(\\) expects string\\|null, false given\\.$#"
1005 | count: 1
1006 | path: library/Cube/Web/Controller.php
1007 |
1008 | -
1009 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Web\\\\IdoController\\:\\:hasIcingadbDimensionParams\\(\\) has parameter \\$dimensions with no value type specified in iterable type array\\.$#"
1010 | count: 1
1011 | path: library/Cube/Web/IdoController.php
1012 |
1013 | -
1014 | message: "#^Method Icinga\\\\Module\\\\Cube\\\\Web\\\\IdoController\\:\\:transformIcingadbDimensionParamsAndRedirect\\(\\) has parameter \\$icingadbDimensions with no value type specified in iterable type array\\.$#"
1015 | count: 1
1016 | path: library/Cube/Web/IdoController.php
1017 |
1018 | -
1019 | message: "#^Parameter \\#2 \\$default of method Icinga\\\\Web\\\\UrlParams\\:\\:shift\\(\\) expects string\\|null, false given\\.$#"
1020 | count: 1
1021 | path: library/Cube/Web/IdoController.php
1022 |
--------------------------------------------------------------------------------