for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dgame\Expectation;
/**
* Class FloatExpectations
* @package Dgame\Expectation
*/
final class FloatExpectations extends NumericExpectations
{
* @param mixed $value
*
* @return float
protected function prepare($value): float
return (float) $value;
}