Fix wrong check for exporter in ConstraintTrait

This commit is contained in:
Andreas Braun 2020-10-30 14:45:28 +01:00
parent 4fa4ecd9b2
commit ecb477952a
No known key found for this signature in database
GPG Key ID: 101B1FBCCA55FAFC
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ trait ConstraintTraitForV7
protected function exporter(): Exporter
{
if (null !== $this->exporter) {
if (null === $this->exporter) {
$this->exporter = new Exporter();
}