Skip to content

Commit 627facc

Browse files
committed
Fixed CS
1 parent ddf4cf4 commit 627facc

File tree

5 files changed

+2
-7
lines changed

5 files changed

+2
-7
lines changed

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
* - [nickname]: defaults to Monolog
161161
* - [level]: level name or int value, defaults to DEBUG
162162
* - [bubble]: bool, defaults to true
163-
*
163+
*
164164
* - slack:
165165
* - token: slack api token
166166
* - channel: channel name

DependencyInjection/MonologExtension.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,6 @@ private function buildHandler(ContainerBuilder $container, $name, array $handler
369369
}
370370
$message->setFactoryService($mailer);
371371

372-
373372
if (isset($handler['content_type'])) {
374373
$message->addMethodCall('setContentType', array($handler['content_type']));
375374
}
@@ -440,7 +439,7 @@ private function buildHandler(ContainerBuilder $container, $name, array $handler
440439
$handler['bubble'],
441440
));
442441
break;
443-
442+
444443
case 'slack':
445444
$definition->setArguments(array(
446445
$handler['token'],

Tests/DependencyInjection/Compiler/AddProcessorsPassTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace Symfony\Bundle\MonologBundle\Tests\DependencyInjection\Compiler;
1313

1414
use Symfony\Bundle\MonologBundle\DependencyInjection\Compiler\AddProcessorsPass;
15-
use Symfony\Bundle\MonologBundle\Tests\TestCase;
1615
use Symfony\Component\DependencyInjection\Reference;
1716
use Symfony\Component\DependencyInjection\Definition;
1817
use Symfony\Component\DependencyInjection\ContainerBuilder;

Tests/DependencyInjection/Compiler/LoggerChannelPassTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
namespace Symfony\Bundle\MonologBundle\Tests\DependencyInjection\Compiler;
1313

14-
use Symfony\Bundle\MonologBundle\Tests\TestCase;
1514
use Symfony\Component\DependencyInjection\Reference;
1615
use Symfony\Component\DependencyInjection\Definition;
1716
use Symfony\Component\DependencyInjection\ContainerBuilder;

Tests/DependencyInjection/DependencyInjectionTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
namespace Symfony\Bundle\MonologBundle\Tests\DependencyInjection;
1313

14-
use Symfony\Bundle\MonologBundle\Tests\TestCase;
15-
1614
abstract class DependencyInjectionTest extends \PHPUnit_Framework_TestCase
1715
{
1816
/**

0 commit comments

Comments
 (0)