Passed
Push — master ( 2837e8...efe747 )
by Tim
02:53
created

test.php (1 issue)

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