for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TonicHealthCheck\Incident\Siren\Subject;
use Collections\Collection;
/**
* Class SubjectCollection.
*/
class SubjectCollection extends Collection
{
const OBJECT_CLASS = SubjectInterface::class;
* IncidentCollection constructor.
public function __construct()
parent::__construct(static::OBJECT_CLASS);
}