@@ -2,16 +2,16 @@ |
||
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]> |
@@ -2,8 +2,8 @@ |
||
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 | /** |
@@ -12,10 +12,10 @@ |
||
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. |
@@ -11,9 +11,9 @@ |
||
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]> |
@@ -11,11 +11,11 @@ |
||
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. |