Solved namebug and formated code

This commit is contained in:
Kevin Frantz 2018-11-25 23:47:42 +01:00
parent 960af1961a
commit ba39321efe
2 changed files with 3 additions and 2 deletions

View File

@ -16,7 +16,8 @@ class AbstractParentRelationTest extends TestCase
public function setUp(): void
{
$this->relation = new class extends AbstractParentRelation{};
$this->relation = new class() extends AbstractParentRelation {
};
}
public function testConstructor(): void

View File

@ -8,7 +8,7 @@ use App\Entity\Meta\LawInterface;
use Doctrine\Common\Collections\Collection;
use App\Entity\Source\AbstractSource;
use App\Entity\EntityInterface;
use App\Entity\Meta\Relation\CreatorRelationInterface;
use App\Entity\Meta\Relation\Parent\CreatorRelationInterface;
/**
* @author kevinfrantz