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\DateIntervalFactory;
use Arp\Factory\FactoryInterface;
/**
* @author Alex Patterson <[email protected]>
* @package Arp\DateTime\Factory
*/
final class DateIntervalFactoryFactory implements FactoryInterface
{
* @param array $config
*
* @return DateIntervalFactory
public function create(array $config = []): DateIntervalFactory
return new DateIntervalFactory();
}