Passed
Push — master ( c0a3a7...3b84a4 )
by Jeroen
58:51
created

views/rss/page/components/list.php (1 issue)

Checks whether a method/function call has too few arguments.

Bug Minor
1
<?php
2
/**
3
 * RSS list view
4
 *
5
 * @uses $vars['items']
6
 */
7
8
$items = $vars['items'];
9
10
if (is_array($items) && sizeof($items) > 0) {
0 ignored issues
show
The call to sizeof() has too few arguments starting with mode. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

10
if (is_array($items) && /** @scrutinizer ignore-call */ sizeof($items) > 0) {

This check compares calls to functions or methods with their respective definitions. If the call has less arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.

Loading history...
11
	foreach ($items as $item) {
12
		echo elgg_view_list_item($item, $vars);
13
	}
14
}
15