for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CultuurNet\UDB3\Offer;
use TwoDotsTwice\Collection\AbstractCollection;
/**
* @method OfferIdentifierCollection with($item)
* @method OfferIdentifierInterface[] toArray()
*/
class OfferIdentifierCollection extends AbstractCollection
{
protected function getValidObjectType()
return OfferIdentifierInterface::class;
}