Completed
Pull Request — master (#3)
by Tomáš
10:21
created
src/Authentication/Authenticator/Authenticator.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -4,14 +4,14 @@
 block discarded – undo
4 4
 
5 5
 namespace SixtyEightPublishers\User\Authentication\Authenticator;
6 6
 
7
-use Nette\SmartObject;
8
-use Nette\Security\IIdentity;
9
-use Nette\Security\IAuthenticator;
7
+use Doctrine\DBAL\Exception as DBALException;
10 8
 use Doctrine\ORM\NonUniqueResultException;
11 9
 use Nette\Security\AuthenticationException;
12
-use Doctrine\DBAL\Exception as DBALException;
13
-use SixtyEightPublishers\User\Authentication\Entity\UserInterface;
10
+use Nette\Security\IAuthenticator;
11
+use Nette\Security\IIdentity;
12
+use Nette\SmartObject;
14 13
 use SixtyEightPublishers\DoctrineQueryObjects\ExecutableQueryObjectFactoryInterface;
14
+use SixtyEightPublishers\User\Authentication\Entity\UserInterface;
15 15
 use SixtyEightPublishers\User\Authentication\Query\AuthenticatorQueryObjectFactoryInterface;
16 16
 
17 17
 final class Authenticator implements IAuthenticator
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.