Issues (331)

examples/surface-check.php (1 issue)

1
<?php
2
3
foreach (cairo_available_surfaces() as $y)
0 ignored issues
show
The function cairo_available_surfaces was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

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

3
foreach (/** @scrutinizer ignore-call */ cairo_available_surfaces() as $y)
Loading history...
4
{
5
	print '$y\n';
6
}