for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Jtotty\Steps;
use Port\Steps\Step;
class CheckPupilDobStep implements Step
{
public function process($item, callable $next)
$item['DOB'] = str_replace('/', '-', $item['DOB']);
return $next($item);
}