for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Arp\DateTime\Factory;
use Arp\DateTime\DateTimeFactory;
use Arp\Factory\FactoryInterface;
/**
* @author Alex Patterson <[email protected]>
* @package Arp\DateTime\Factory
*/
final class DateTimeFactoryFactory implements FactoryInterface
{
* @param array $config
*
* @return DateTimeFactory
public function create(array $config = []): DateTimeFactory
return new DateTimeFactory();
}