Passed
Push — master ( 98820b...d17f13 )
by Tim
03:56 queued 01: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