Test Setup Failed
Pull Request — master (#4)
by Miloš
18:27
created
src/IPub/Permissions/Access/AnnotationChecker.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 use Nette\Application\UI;
21 21
 use Nette\Utils;
22 22
 use Nette\Security as NS;
23
-
24 23
 use IPub;
25 24
 use IPub\Permissions\Entities;
26 25
 use IPub\Permissions\Exceptions;
Please login to merge, or discard this patch.
src/IPub/Permissions/Access/LinkChecker.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
 use Nette;
20 20
 use Nette\Application;
21 21
 use Nette\Application\UI;
22
-use Nette\Security as NS;
23 22
 
24 23
 /**
25 24
  * Create link access checker
Please login to merge, or discard this patch.
src/IPub/Permissions/Entities/Role.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 namespace IPub\Permissions\Entities;
18 18
 
19 19
 use Nette;
20
-
21 20
 use IPub;
22 21
 use IPub\Permissions\Exceptions;
23 22
 
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
 class Role implements IRole
25 25
 {
26
-    use Nette\SmartObject;
26
+	use Nette\SmartObject;
27 27
 
28 28
 	/**
29 29
 	 * @var string
Please login to merge, or discard this patch.
src/IPub/Permissions/Entities/Resource.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 
21 21
 class Resource implements IResource
22 22
 {
23
-    use Nette\SmartObject;
23
+	use Nette\SmartObject;
24 24
 
25 25
 	/**
26 26
 	 * @var string
Please login to merge, or discard this patch.
src/IPub/Permissions/Providers/ResourcesProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
  */
33 33
 class ResourcesProvider implements IResourcesProvider
34 34
 {
35
-    use Nette\SmartObject;
35
+	use Nette\SmartObject;
36 36
 
37 37
 	/**
38 38
 	 * @var Entities\IResource[]
Please login to merge, or discard this patch.
src/IPub/Permissions/Providers/PermissionsProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
  */
33 33
 class PermissionsProvider implements IPermissionsProvider
34 34
 {
35
-    use Nette\SmartObject;
35
+	use Nette\SmartObject;
36 36
 
37 37
 	/**
38 38
 	 * @var Entities\IPermission[]
Please login to merge, or discard this patch.
src/IPub/Permissions/Providers/RolesProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
  */
33 33
 class RolesProvider implements IRolesProvider
34 34
 {
35
-    use Nette\SmartObject;
35
+	use Nette\SmartObject;
36 36
 
37 37
 	/**
38 38
 	 * @var Entities\IRole[]
Please login to merge, or discard this patch.