Fix missing exporter in PHPUnit constraint poylfill

This commit is contained in:
Andreas Braun 2019-08-20 11:57:05 +02:00
parent 0e7bf6fb52
commit b78c5cb1a6
No known key found for this signature in database
GPG Key ID: 101B1FBCCA55FAFC

View File

@ -49,6 +49,10 @@ trait ConstraintTraitForV6
*/
protected function exporter()
{
if (null === $this->exporter) {
$this->exporter = new Exporter();
}
return $this->exporter;
}