Completed
Pull Request — 1.0 (#106)
by
unknown
02:18
created
src/SilverStripe/BehatExtension/Context/BasicContext.php 1 patch
Unused Use Statements   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,16 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace SilverStripe\BehatExtension\Context;
4 4
 
5
-use Behat\Behat\Context\BehatContext,
6
-    Behat\Behat\Context\Step,
7
-    Behat\Behat\Event\StepEvent,
8
-    Behat\Behat\Event\ScenarioEvent;
9
-
5
+use Behat\Behat\Context\BehatContext;
6
+use Behat\Behat\Context\Step;
7
+use Behat\Behat\Event\StepEvent;
8
+use Behat\Behat\Event\ScenarioEvent;
10 9
 use Behat\Mink\Driver\Selenium2Driver;
11 10
 
12
-use Behat\Gherkin\Node\PyStringNode,
13
-    Behat\Gherkin\Node\TableNode;
14
-
15 11
 // PHPUnit
16 12
 require_once 'PHPUnit/Autoload.php';
17 13
 require_once 'PHPUnit/Framework/Assert/Functions.php';
Please login to merge, or discard this patch.
src/SilverStripe/BehatExtension/Context/FixtureContext.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace SilverStripe\BehatExtension\Context;
4 4
 
5
-use Behat\Behat\Context\BehatContext,
6
-	Behat\Behat\Event\ScenarioEvent,
7
-	Behat\Gherkin\Node\PyStringNode,
8
-	Behat\Gherkin\Node\TableNode,
9
-	SilverStripe\Filesystem\Storage\AssetStore;
5
+use Behat\Behat\Context\BehatContext;
6
+use Behat\Behat\Event\ScenarioEvent;
7
+use Behat\Gherkin\Node\PyStringNode;
8
+use Behat\Gherkin\Node\TableNode;
9
+use SilverStripe\Filesystem\Storage\AssetStore;
10 10
 
11 11
 // PHPUnit
12 12
 require_once 'PHPUnit/Autoload.php';
Please login to merge, or discard this patch.