Skip to content

Commit

Permalink
Merge 6eabc22 into d24d2ef
Browse files Browse the repository at this point in the history
  • Loading branch information
msvrtan committed Jun 10, 2017
2 parents d24d2ef + 6eabc22 commit 825060e
Show file tree
Hide file tree
Showing 15 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/AppCache.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache;

class AppCache extends HttpCache
Expand Down
2 changes: 2 additions & 0 deletions app/AppKernel.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\HttpKernel\Kernel;

Expand Down
2 changes: 2 additions & 0 deletions app/DoctrineMigrations/Version20150103180605.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Application\Migrations;

use Doctrine\DBAL\Migrations\AbstractMigration;
Expand Down
2 changes: 2 additions & 0 deletions app/autoload.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use Composer\Autoload\ClassLoader;
use Doctrine\Common\Annotations\AnnotationRegistry;

Expand Down
2 changes: 2 additions & 0 deletions lib/Behat/CleanDbTrait.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Resources\Behat;

use Behat\Behat\Hook\Scope\BeforeScenarioScope;
Expand Down
2 changes: 2 additions & 0 deletions lib/Behat/DefaultContext.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Resources\Behat;

use Behat\Behat\Context\SnippetAcceptingContext;
Expand Down
2 changes: 2 additions & 0 deletions lib/Behat/DomainContext.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Resources\Behat;

use Behat\Gherkin\Node\TableNode;
Expand Down
2 changes: 2 additions & 0 deletions lib/Behat/LoginDomainTrait.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Resources\Behat;

use NullDev\UserBundle\Entity\User;
Expand Down
2 changes: 2 additions & 0 deletions lib/Behat/LoginWebTrait.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Resources\Behat;

/**
Expand Down
2 changes: 2 additions & 0 deletions lib/Behat/ScreenshotTrait.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Resources\Behat;

use Behat\Behat\Hook\Scope\AfterStepScope;
Expand Down
2 changes: 2 additions & 0 deletions lib/Behat/Symfony2Trait.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Resources\Behat;

use Symfony\Component\HttpKernel\KernelInterface;
Expand Down
2 changes: 2 additions & 0 deletions lib/Behat/WebContext.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Resources\Behat;

use Behat\Behat\Context\SnippetAcceptingContext;
Expand Down
2 changes: 2 additions & 0 deletions src/AppBundle/AppBundle.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle;

use Symfony\Component\HttpKernel\Bundle\Bundle;
Expand Down
2 changes: 2 additions & 0 deletions src/AppBundle/Controller/DefaultController.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\Controller;

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
Expand Down
2 changes: 2 additions & 0 deletions src/AppBundle/DataFixtures/ORM/EmptyFixtures.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace AppBundle\DataFixtures\ORM;

use Doctrine\Common\DataFixtures\AbstractFixture;
Expand Down

0 comments on commit 825060e

Please sign in to comment.