Skip to content

Commit

Permalink
php-cs fixer fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RomulusED69 committed Jan 6, 2020
1 parent f9cc85f commit 6192470
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
13 changes: 7 additions & 6 deletions spec/DependencyInjection/YproximiteEkomiApiExtensionSpec.php
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
<?php

declare(strict_types=1);

namespace spec\Yproximite\Bundle\EkomiApiBundle\DependencyInjection;

use PhpSpec\ObjectBehavior;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\ContainerBuilder;

use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Reference;
use Yproximite\Bundle\EkomiApiBundle\DependencyInjection\YproximiteEkomiApiExtension;
use Yproximite\Ekomi\Api\Client\Client;
use Yproximite\Ekomi\Api\Service\ServiceAggregator;
use Yproximite\Bundle\EkomiApiBundle\DependencyInjection\YproximiteEkomiApiExtension;

class YproximiteEkomiApiExtensionSpec extends ObjectBehavior
{
function it_is_initializable()
public function it_is_initializable()
{
$this->shouldHaveType(YproximiteEkomiApiExtension::class);
}

function it_should_load(ContainerBuilder $container)
public function it_should_load(ContainerBuilder $container)
{
$configs = [
'yproximite_ekomi_api' => [
Expand Down
1 change: 1 addition & 0 deletions src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

declare(strict_types=1);

namespace Yproximite\Bundle\EkomiApiBundle\DependencyInjection;
Expand Down
6 changes: 3 additions & 3 deletions src/DependencyInjection/YproximiteEkomiApiExtension.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

declare(strict_types=1);

namespace Yproximite\Bundle\EkomiApiBundle\DependencyInjection;

use Symfony\Component\Config\Definition\Processor;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

use Yproximite\Ekomi\Api\Client\Client;
use Yproximite\Ekomi\Api\Service\ServiceAggregator;

Expand Down
1 change: 1 addition & 0 deletions src/YproximiteEkomiApiBundle.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

declare(strict_types=1);

namespace Yproximite\Bundle\EkomiApiBundle;
Expand Down

0 comments on commit 6192470

Please sign in to comment.