Passed
Push — master ( d08a8c...56a1e2 )
by Tim
03:27 queued 01:09
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