Test Setup Failed
Push — master ( 3bfa70...333906 )
by Gabriel
13:19
created
src/Locator/ModelLocator/Traits/StaticMethodsTrait.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Nip\Records\Locator\ModelLocator\Traits;
4 4
 
5
-use Nip\Records\Locator\Exceptions\InvalidModelException;
6 5
 use Nip\Records\RecordManager;
7 6
 
8 7
 /**
Please login to merge, or discard this patch.
src/Locator/Resolver/Pipeline/Stages/NamespaceSearch.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Nip\Records\Locator\Resolver\Pipeline\Stages;
4 4
 
5
-use Nip\Records\AbstractModels\RecordManager;
6
-
7 5
 /**
8 6
  * Class NamespaceSearch
9 7
  * @package Nip\Records\Locator\Resolver\Pipeline\Stages
Please login to merge, or discard this patch.
src/Relations/Relation.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Nip\Database\Query\Select as Query;
8 8
 use Nip\HelperBroker;
9 9
 use Exception;
10
-use Nip\Records\Collections\Collection;
11 10
 use Nip\Records\Collections\Collection as RecordCollection;
12 11
 use Nip\Records\Locator\Exceptions\InvalidModelException;
13 12
 use Nip\Records\Locator\ModelLocator;
Please login to merge, or discard this patch.
tests/RecordTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Nip\Records\Tests;
4 4
 
5
-use Mockery as m;
6 5
 use Nip\Database\Connections\Connection;
7 6
 use Nip\Records\Record;
8 7
 use Nip\Records\RecordManager as Records;
Please login to merge, or discard this patch.
tests/Relations/MorphToManyTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace Nip\Records\Tests\Relations;
4 4
 
5 5
 use Mockery as m;
6
-use Nip\Container\Container;
7
-use Nip\Database\Connections\Connection;
8 6
 use Nip\Records\Record;
9 7
 use Nip\Records\RecordManager;
10 8
 use Nip\Records\Relations\MorphToMany;
Please login to merge, or discard this patch.
src/Relations/HasOneOrMany.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Nip\Records\Relations;
4 4
 
5
-use Nip\Database\Query\Select as Query;
6 5
 use Nip\HelperBroker;
7 6
 use Nip_Helper_Arrays as ArraysHelper;
8 7
 use Nip\Records\AbstractModels\Record as Record;
9 8
 use Nip\Records\Collections\Associated as AssociatedCollection;
10
-use Nip\Records\Collections\Collection;
11 9
 use Nip\Records\Collections\Collection as RecordCollection;
12 10
 use Nip\Records\Relations\Traits\HasCollectionResults;
13 11
 
Please login to merge, or discard this patch.