Passed
Push — master ( ada618...782169 )
by Tim
02:31
created
Labels
Severity
1
<?php
2
3
echo version_compare('2.0', '2.0', '<=');
0 ignored issues
show
Are you sure version_compare('2.0', '2.0', '<=') of type integer|true can be used in echo? ( Ignorable by Annotation )

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

3
echo /** @scrutinizer ignore-type */ version_compare('2.0', '2.0', '<=');
Loading history...
4