for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Clearcode\CommandBusConsole\ValueConverter;
use Ramsey\Uuid\Uuid;
class UuidConverter implements ValueConverter
{
public function convert($rawValue)
try {
return Uuid::fromString($rawValue);
} catch (\Exception $e) {
return;
}