for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Xml\Impl\Type\Reference;
use Xml\Impl\Type\Child\ChildElementCollectionImpl;
class QNameElementReferenceCollectionBuilderImpl extends ElementReferenceCollectionBuilderImpl
{
public function __construct(
string $childElementType,
string $referenceTargetClass,
ChildElementCollectionImpl $collection
) {
parent::__construct($childElementType, $referenceTargetClass, $collection);
$this->elementReferenceCollectionImpl = new QNameElementReferenceCollectionImpl($collection);
}