Completed
Push — master ( 86b78d...1e5c0a )
by Ricardo
04:53
created
src/Models/Infra/Ci/Build.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,16 +2,16 @@
 block discarded – undo
2 2
 
3 3
 namespace Fabrica\Models\Infra\Ci;
4 4
 
5
-use Fabrica\Tools\Builder;
6 5
 use Fabrica\Helper\Lang;
6
+use Fabrica\Models\Infra\Ci\Base\Build as BaseBuild;
7
+use Fabrica\Tools\Builder;
7 8
 use Fabrica\Tools\Plugin\PhpParallelLint;
9
+use Fabrica\Tools\Store\BuildErrorStore;
8 10
 use Fabrica\Tools\Store\Factory;
9 11
 use Fabrica\Tools\Store\ProjectStore;
10
-use Fabrica\Tools\Store\BuildErrorStore;
12
+use Pedreiro\Exceptions\InvalidArgumentException;
11 13
 use Symfony\Component\Filesystem\Filesystem;
12 14
 use Symfony\Component\Yaml\Parser as YamlParser;
13
-use Fabrica\Models\Infra\Ci\Base\Build as BaseBuild;
14
-use Pedreiro\Exceptions\InvalidArgumentException;
15 15
 
16 16
 /**
17 17
  * @author Ricardo Sierra <[email protected]>
Please login to merge, or discard this patch.
src/Tools/Plugin/Util/Factory.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 Fabrica\Tools\Plugin\Util;
4 4
 
5
-use Pedreiro\Exceptions\InvalidArgumentException;
6 5
 use Fabrica\Tools\Plugin;
6
+use Pedreiro\Exceptions\InvalidArgumentException;
7 7
 use Pimple\Container;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/Tools/Programs/Git/Commit.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
 namespace Fabrica\Tools\Programs\Git;
13 13
 
14 14
 use Fabrica\Tools\Programs\Git\Diff\Diff;
15
+use Fabrica\Tools\Programs\Git\Util\StringHelper;
15 16
 use Pedreiro\Exceptions\InvalidArgumentException;
16 17
 use Pedreiro\Exceptions\ProcessException;
17 18
 use Pedreiro\Exceptions\ReferenceNotFoundException;
18
-use Fabrica\Tools\Programs\Git\Util\StringHelper;
19 19
 
20 20
 /**
21 21
  * Representation of a Git commit.
Please login to merge, or discard this patch.
src/Tools/Programs/Git/Log.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
  */
12 12
 namespace Fabrica\Tools\Programs\Git;
13 13
 
14
+use Fabrica\Tools\Programs\Git\Util\StringHelper;
14 15
 use Pedreiro\Exceptions\ProcessException;
15 16
 use Pedreiro\Exceptions\ReferenceNotFoundException;
16
-use Fabrica\Tools\Programs\Git\Util\StringHelper;
17 17
 
18 18
 /**
19 19
  * @author Alexandre Salomé <[email protected]>
Please login to merge, or discard this patch.
src/Tools/Programs/Git/ReferenceBag.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@
 block discarded – undo
11 11
  */
12 12
 namespace Fabrica\Tools\Programs\Git;
13 13
 
14
-use Pedreiro\Exceptions\ReferenceNotFoundException;
15
-use Pedreiro\Exceptions\RuntimeException;
16 14
 use Fabrica\Tools\Programs\Git\Reference\Branch;
17 15
 use Fabrica\Tools\Programs\Git\Reference\Stash;
18 16
 use Fabrica\Tools\Programs\Git\Reference\Tag;
17
+use Pedreiro\Exceptions\ReferenceNotFoundException;
18
+use Pedreiro\Exceptions\RuntimeException;
19 19
 
20 20
 /**
21 21
  * Reference set associated to a repository.
Please login to merge, or discard this patch.