There was an error while loading. Please reload this page.
<rule ref="Squiz.Strings.EchoedStrings" />
Echoed strings should not be bracketed
<?php echo ($loan_device->returndate == 0) ? 'Not returned' : date('d/m/Y', $loan_device->returndate); ?>
$x
<?php $x = date('d/m/Y', $loan_device->returndate); echo ($loan_device->returndate == 0) ? 'Not returned' : $x; ?>