Completed
Push — master ( ef3733...41f383 )
by Albin
12:32
created
src/Knp/FriendlyContexts/Context/ApiContext.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Knp\FriendlyContexts\Context;
4 4
 
5
-use Behat\Gherkin\Node\TableNode;
6 5
 use Behat\Gherkin\Node\PyStringNode;
6
+use Behat\Gherkin\Node\TableNode;
7 7
 use Guzzle\Http\Exception\BadResponseException;
8 8
 use Knp\FriendlyContexts\Http\Security\HttpExtension;
9 9
 
Please login to merge, or discard this patch.
src/Knp/FriendlyContexts/Context/Initializer/FriendlyInitializer.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Knp\FriendlyContexts\Context\Initializer;
4 4
 
5
-use Behat\Behat\Context\Initializer\ContextInitializer;
6 5
 use Behat\Behat\Context\Context as ContextInterface;
7
-use Symfony\Component\DependencyInjection\ContainerInterface;
6
+use Behat\Behat\Context\Initializer\ContextInitializer;
8 7
 use Knp\FriendlyContexts\Context\Context;
8
+use Symfony\Component\DependencyInjection\ContainerInterface;
9 9
 
10 10
 class FriendlyInitializer implements ContextInitializer
11 11
 {
Please login to merge, or discard this patch.
src/Knp/FriendlyContexts/Context/RawMinkContext.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Knp\FriendlyContexts\Context;
4 4
 
5
-use Behat\Mink\Mink;
6 5
 use Behat\MinkExtension\Context\MinkAwareContext;
6
+use Behat\Mink\Mink;
7 7
 
8 8
 abstract class RawMinkContext extends Context implements MinkAwareContext
9 9
 {
Please login to merge, or discard this patch.
src/Knp/FriendlyContexts/Context/RawPageContext.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Knp\FriendlyContexts\Context;
4 4
 
5
-use Symfony\Component\PropertyAccess\PropertyAccess;
6
-use Knp\FriendlyContexts\Page\Page;
7 5
 use Behat\Gherkin\Node\TableNode;
6
+use Knp\FriendlyContexts\Page\Page;
7
+use Symfony\Component\PropertyAccess\PropertyAccess;
8 8
 
9 9
 class RawPageContext extends RawMinkContext
10 10
 {
Please login to merge, or discard this patch.
src/Knp/FriendlyContexts/Definition/DefinitionFinder.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Knp\FriendlyContexts\Definition;
4 4
 
5
-use Behat\Testwork\Environment\Environment;
5
+use Behat\Behat\Definition\DefinitionFinder as BaseDefinitionFinder;
6 6
 use Behat\Gherkin\Node\FeatureNode;
7 7
 use Behat\Gherkin\Node\StepNode;
8
-use Behat\Behat\Definition\DefinitionFinder as BaseDefinitionFinder;
8
+use Behat\Testwork\Environment\Environment;
9 9
 
10 10
 class DefinitionFinder
11 11
 {
Please login to merge, or discard this patch.
src/Knp/FriendlyContexts/Doctrine/EntityHydrator.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Knp\FriendlyContexts\Doctrine;
4 4
 
5
-use Doctrine\ORM\Mapping\ClassMetadata;
6
-use Symfony\Component\PropertyAccess\PropertyAccess;
7 5
 use Doctrine\Common\Collections\ArrayCollection;
8
-use Knp\FriendlyContexts\Utils\TextFormater;
9
-use Knp\FriendlyContexts\Guesser\GuesserManager;
10 6
 use Doctrine\Common\Persistence\ObjectManager;
7
+use Doctrine\ORM\Mapping\ClassMetadata;
8
+use Knp\FriendlyContexts\Guesser\GuesserManager;
9
+use Knp\FriendlyContexts\Utils\TextFormater;
11 10
 use Knp\FriendlyContexts\Utils\UniqueCache;
11
+use Symfony\Component\PropertyAccess\PropertyAccess;
12 12
 
13 13
 class EntityHydrator
14 14
 {
Please login to merge, or discard this patch.