for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SWP\Behat\Service;
use SWP\Bundle\ContentBundle\EventListener\TimestampableListener;
use SWP\Component\Common\Model\DateTime;
class TimestampableListenerStub extends TimestampableListener
{
protected function getFieldValue($meta, $field, $eventAdapter): \DateTimeInterface
return DateTime::getCurrentDateTime();
}