Skip to content

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
emodric committed Nov 14, 2017
1 parent c19a475 commit 2a9e452
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .php_cs
Expand Up @@ -19,6 +19,7 @@ return PhpCsFixer\Config::create()
'semicolon_after_instruction' => true,
'strict_comparison' => true,
'strict_param' => true,
'yoda_style' => false,
])
->setFinder(
PhpCsFixer\Finder::create()
Expand Down
2 changes: 1 addition & 1 deletion Core/FieldType/SyliusProduct/SyliusProductStorage.php
Expand Up @@ -3,9 +3,9 @@
namespace Netgen\Bundle\EzSyliusBundle\Core\FieldType\SyliusProduct;

use Doctrine\ORM\EntityManagerInterface;
use eZ\Publish\Core\MVC\Symfony\Locale\LocaleConverterInterface;
use eZ\Publish\SPI\FieldType\GatewayBasedStorage;
use eZ\Publish\SPI\FieldType\StorageGateway;
use eZ\Publish\Core\MVC\Symfony\Locale\LocaleConverterInterface;
use eZ\Publish\SPI\Persistence\Content\Field;
use eZ\Publish\SPI\Persistence\Content\VersionInfo;
use Sylius\Component\Core\Model\ProductInterface;
Expand Down
Expand Up @@ -22,7 +22,7 @@ class DoctrineStorage extends Gateway
*/
public function __construct(Connection $connection)
{
$this->connection = $connection;
$this->connection = $connection;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion Entity/User.php
Expand Up @@ -3,8 +3,8 @@
namespace Netgen\Bundle\EzSyliusBundle\Entity;

use eZ\Publish\API\Repository\Values\User\User as APIUser;
use eZ\Publish\Core\Repository\Values\User\UserReference;
use eZ\Publish\API\Repository\Values\User\UserReference as APIUserReference;
use eZ\Publish\Core\Repository\Values\User\UserReference;
use LogicException;
use Symfony\Component\Security\Core\User\UserInterface as BaseUserInterface;

Expand Down

0 comments on commit 2a9e452

Please sign in to comment.