Applied code formator

This commit is contained in:
Kevin Frantz
2018-11-06 20:08:28 +01:00
parent a3bbd64f43
commit 1fa93e577a
5 changed files with 21 additions and 26 deletions

View File

@@ -33,9 +33,11 @@ class CollectionAttributTest extends TestCase
$this->assertNull($this->collection->setCollection($collection));
$this->assertEquals($collection, $this->collection->getCollection());
}
public function testAdd():void{
$mock = new class{};
public function testAdd(): void
{
$mock = new class() {
};
$this->collection->setCollection(new ArrayCollection());
$this->assertTrue($this->collection->getCollection()->add($mock));
$this->assertEquals($mock, $this->collection->getCollection()->get(0));