Skip to content

Commit

Permalink
Code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
janbuecker committed Nov 20, 2018
1 parent dcbbf82 commit 73c3219
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Framework/Api/EventListener/ResponseExceptionListener.php
Expand Up @@ -48,7 +48,7 @@ public function onKernelException(GetResponseForExceptionEvent $event)

public function logException(\Exception $exception, $message): void
{
if (null === $this->logger) {
if ($this->logger === null) {
return;
}

Expand Down
Expand Up @@ -3,7 +3,6 @@
namespace Shopware\Core\Framework\Test\DataAbstractionLayer\Field;

use PHPUnit\Framework\TestCase;
use Shopware\Core\Defaults;
use Shopware\Core\Framework\Context;
use Shopware\Core\Framework\DataAbstractionLayer\Field\PasswordField;
use Shopware\Core\Framework\DataAbstractionLayer\FieldSerializer\PasswordFieldSerializer;
Expand Down

0 comments on commit 73c3219

Please sign in to comment.