Completed
Push — develop ( 6f46d9...f4bfbc )
by Nate
02:56
created
src/behaviors/OrganizationsAssociatedToUserBehavior.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,16 +3,16 @@
 block discarded – undo
3 3
 namespace flipbox\organizations\behaviors;
4 4
 
5 5
 use Craft;
6
+use Tightenco\Collect\Support\Collection;
6 7
 use craft\elements\User;
7 8
 use craft\events\ModelEvent;
8 9
 use flipbox\craft\ember\helpers\QueryHelper;
10
+use flipbox\organizations\Organizations as OrganizationPlugin;
9 11
 use flipbox\organizations\elements\Organization;
10
-use flipbox\organizations\managers\RelationshipManagerInterface;
11 12
 use flipbox\organizations\managers\OrganizationRelationshipManager;
12
-use flipbox\organizations\Organizations as OrganizationPlugin;
13
+use flipbox\organizations\managers\RelationshipManagerInterface;
13 14
 use flipbox\organizations\queries\OrganizationQuery;
14 15
 use flipbox\organizations\validators\OrganizationsValidator;
15
-use Tightenco\Collect\Support\Collection;
16 16
 use yii\base\Behavior;
17 17
 use yii\base\Event;
18 18
 use yii\base\Exception;
Please login to merge, or discard this patch.
src/behaviors/UserTypesAssociatedToUserBehavior.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace flipbox\organizations\behaviors;
4 4
 
5
+use Tightenco\Collect\Support\Collection;
5 6
 use craft\elements\User;
6 7
 use flipbox\craft\ember\helpers\QueryHelper;
7 8
 use flipbox\organizations\elements\Organization;
8 9
 use flipbox\organizations\managers\RelationshipManagerInterface;
9 10
 use flipbox\organizations\queries\UserTypeQuery;
10 11
 use flipbox\organizations\records\UserType;
11
-use Tightenco\Collect\Support\Collection;
12 12
 use yii\base\Behavior;
13 13
 use yii\base\Exception;
14 14
 
Please login to merge, or discard this patch.
src/elements/TypesAttributeTrait.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,12 +9,12 @@
 block discarded – undo
9 9
 namespace flipbox\organizations\elements;
10 10
 
11 11
 use Craft;
12
+use Tightenco\Collect\Support\Collection;
12 13
 use flipbox\craft\ember\helpers\QueryHelper;
13
-use flipbox\organizations\managers\RelationshipManagerInterface;
14 14
 use flipbox\organizations\managers\OrganizationTypeRelationshipManager;
15
+use flipbox\organizations\managers\RelationshipManagerInterface;
15 16
 use flipbox\organizations\queries\OrganizationTypeQuery;
16 17
 use flipbox\organizations\records\OrganizationType;
17
-use Tightenco\Collect\Support\Collection;
18 18
 
19 19
 /**
20 20
  * @author Flipbox Factory <[email protected]>
Please login to merge, or discard this patch.
src/elements/UsersAttributeTrait.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,15 +9,15 @@
 block discarded – undo
9 9
 namespace flipbox\organizations\elements;
10 10
 
11 11
 use Craft;
12
+use Tightenco\Collect\Support\Collection;
12 13
 use craft\db\Query;
13
-use craft\elements\db\UserQuery;
14 14
 use craft\elements\User;
15
+use craft\elements\db\UserQuery;
15 16
 use craft\helpers\ArrayHelper;
16 17
 use flipbox\craft\ember\helpers\QueryHelper;
17 18
 use flipbox\organizations\managers\RelationshipManagerInterface;
18 19
 use flipbox\organizations\managers\UserRelationshipManager;
19 20
 use flipbox\organizations\records\UserAssociation;
20
-use Tightenco\Collect\Support\Collection;
21 21
 
22 22
 /**
23 23
  * @author Flipbox Factory <[email protected]>
Please login to merge, or discard this patch.