Completed
Push — master ( 16538c...fa3a1b )
by Tomáš
23:39 queued 13:39
created
src/Authentication/DI/AuthenticationExtension.php 1 patch
Unused Use Statements   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -4,24 +4,24 @@
 block discarded – undo
4 4
 
5 5
 namespace SixtyEightPublishers\User\Authentication\DI;
6 6
 
7
+use Nette\DI\Definitions\Statement;
7 8
 use Nette\Schema\Expect;
8 9
 use Nette\Schema\Schema;
9 10
 use Nette\Security\IAuthenticator;
10
-use Nette\DI\Definitions\Statement;
11 11
 use SixtyEightPublishers\DoctrineBridge\DI\TargetEntity;
12
-use SixtyEightPublishers\User\Common\DI\CommonExtension;
13
-use SixtyEightPublishers\User\DI\AbstractCompilerExtensionPass;
14
-use SixtyEightPublishers\User\Authentication\Entity\UserInterface;
15
-use SixtyEightPublishers\User\Authentication\Csrf\CsrfTokenFactory;
16
-use SixtyEightPublishers\User\Common\Exception\ConfigurationException;
17 12
 use SixtyEightPublishers\DoctrineBridge\DI\TargetEntityProviderInterface;
13
+use SixtyEightPublishers\TranslationBridge\DI\TranslationProviderInterface;
18 14
 use SixtyEightPublishers\User\Authentication\Authenticator\Authenticator;
19 15
 use SixtyEightPublishers\User\Authentication\Control\SignIn\SignInControl;
20
-use SixtyEightPublishers\TranslationBridge\DI\TranslationProviderInterface;
16
+use SixtyEightPublishers\User\Authentication\Control\SignIn\SignInControlFactoryInterface;
17
+use SixtyEightPublishers\User\Authentication\Csrf\CsrfTokenFactory;
21 18
 use SixtyEightPublishers\User\Authentication\Csrf\CsrfTokenFactoryInterface;
19
+use SixtyEightPublishers\User\Authentication\Entity\UserInterface;
22 20
 use SixtyEightPublishers\User\Authentication\Query\AuthenticatorQueryObject;
23
-use SixtyEightPublishers\User\Authentication\Control\SignIn\SignInControlFactoryInterface;
24 21
 use SixtyEightPublishers\User\Authentication\Query\AuthenticatorQueryObjectFactoryInterface;
22
+use SixtyEightPublishers\User\Common\DI\CommonExtension;
23
+use SixtyEightPublishers\User\Common\Exception\ConfigurationException;
24
+use SixtyEightPublishers\User\DI\AbstractCompilerExtensionPass;
25 25
 
26 26
 final class AuthenticationExtension extends AbstractCompilerExtensionPass implements TargetEntityProviderInterface, TranslationProviderInterface
27 27
 {
Please login to merge, or discard this patch.
src/Common/DI/CommonExtension.php 1 patch
Unused Use Statements   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -5,26 +5,26 @@
 block discarded – undo
5 5
 namespace SixtyEightPublishers\User\Common\DI;
6 6
 
7 7
 use ArrayObject;
8
-use Nette\Schema\Expect;
9
-use Nette\Schema\Schema;
10 8
 use Nette\DI\CompilerExtension;
11 9
 use Nette\DI\Definitions\Statement;
12
-use SixtyEightPublishers\User\Common\UserMapping;
10
+use Nette\Schema\Expect;
11
+use Nette\Schema\Schema;
13 12
 use SixtyEightPublishers\DoctrineBridge\DI\DatabaseType;
13
+use SixtyEightPublishers\DoctrineBridge\DI\DatabaseTypeProviderInterface;
14 14
 use SixtyEightPublishers\DoctrineBridge\DI\TargetEntity;
15
-use SixtyEightPublishers\User\Common\Logger\TracyLogger;
16
-use SixtyEightPublishers\User\Common\Mail\NullMailSender;
15
+use SixtyEightPublishers\DoctrineBridge\DI\TargetEntityProviderInterface;
16
+use SixtyEightPublishers\User\Common\DbalType\Password\PasswordInterface;
17
+use SixtyEightPublishers\User\Common\DbalType\Password\PasswordType;
17 18
 use SixtyEightPublishers\User\Common\Entity\UserInterface;
19
+use SixtyEightPublishers\User\Common\Exception\ConfigurationException;
18 20
 use SixtyEightPublishers\User\Common\Logger\LoggerInterface;
21
+use SixtyEightPublishers\User\Common\Logger\TracyLogger;
19 22
 use SixtyEightPublishers\User\Common\Mail\MailSenderInterface;
20
-use SixtyEightPublishers\User\DI\AbstractCompilerExtensionPass;
21
-use SixtyEightPublishers\User\Common\DbalType\Password\PasswordType;
22
-use SixtyEightPublishers\User\Common\Exception\ConfigurationException;
23
-use SixtyEightPublishers\DoctrineBridge\DI\DatabaseTypeProviderInterface;
24
-use SixtyEightPublishers\DoctrineBridge\DI\TargetEntityProviderInterface;
25
-use SixtyEightPublishers\User\Common\DbalType\Password\PasswordInterface;
23
+use SixtyEightPublishers\User\Common\Mail\NullMailSender;
26 24
 use SixtyEightPublishers\User\Common\PasswordHashStrategy\DefaultPasswordHashStrategy;
27 25
 use SixtyEightPublishers\User\Common\PasswordHashStrategy\PasswordHashStrategyInterface;
26
+use SixtyEightPublishers\User\Common\UserMapping;
27
+use SixtyEightPublishers\User\DI\AbstractCompilerExtensionPass;
28 28
 
29 29
 final class CommonExtension extends AbstractCompilerExtensionPass implements TargetEntityProviderInterface, DatabaseTypeProviderInterface
30 30
 {
Please login to merge, or discard this patch.