for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PH\Bundle\SubscriptionBundle\Provider;
final class SubscriptionIntervalsProvider implements SubscriptionIntervalsProviderInterface
{
private $intervals = [];
public function __construct(array $intervals)
$this->intervals = $intervals;
}
public function getIntervals(): array
return $this->intervals;