for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Clearcode\CommandBusConsole\ValueConverter;
class IntConverter implements ValueConverter
{
public function convert($rawValue)
if (is_numeric($rawValue)) {
return (int) $rawValue;
}
return;