Skip to content

Commit

Permalink
cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matej21 committed Mar 14, 2018
1 parent 9ad8866 commit 1f65417
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/Bridges/Infrastructure/LogTesterExtension.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php declare(strict_types = 1);

namespace Mangoweb\Tester\LogTester\Bridges\Infrastructure;

Expand All @@ -9,21 +9,21 @@

class LogTesterExtension extends CompilerExtension
{
public function loadConfiguration()
{
$builder = $this->getContainerBuilder();
public function loadConfiguration()
{
$builder = $this->getContainerBuilder();

$builder->addDefinition($this->prefix('logTester'))
->setClass(LogTester::class);
$builder->addDefinition($this->prefix('logTesterContainerHook'))
->setClass(LogTesterContainerHook::class)
->addTag(MangoTesterExtension::TAG_HOOK);
$builder->addDefinition($this->prefix('logTesterTestCaseListener'))
->setClass(LogTesterTestCaseListener::class);
$builder->addDefinition($this->prefix('logTester'))
->setClass(LogTester::class);
$builder->addDefinition($this->prefix('logTesterContainerHook'))
->setClass(LogTesterContainerHook::class)
->addTag(MangoTesterExtension::TAG_HOOK);
$builder->addDefinition($this->prefix('logTesterTestCaseListener'))
->setClass(LogTesterTestCaseListener::class);

$builder->addDefinition($this->prefix('logger'))
->setClass(TestLogger::class)
->setDynamic()
->addTag(MangoTesterExtension::TAG_REQUIRE);
}
$builder->addDefinition($this->prefix('logger'))
->setClass(TestLogger::class)
->setDynamic()
->addTag(MangoTesterExtension::TAG_REQUIRE);
}
}

0 comments on commit 1f65417

Please sign in to comment.