Passed
Pull Request — master (#594)
by Mathias
19:06 queued 06:38
created
module/Auth/src/Auth/Form/Validator/UniqueLoginNameFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
  */
21 21
 class UniqueLoginNameFactory implements FactoryInterface
22 22
 {
23
-    public function __invoke( ContainerInterface $container, $requestedName, array $options = null )
23
+    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
24 24
     {
25 25
         $repository = $container->get('repositories')->get('Auth/User');
26 26
         $user       = $container->get('AuthenticationService')->getUser();
Please login to merge, or discard this patch.
module/Auth/src/Auth/Form/UserBaseFieldset.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@
 block discarded – undo
22 22
     public function init()
23 23
     {
24 24
         $this->setName('base');
25
-             //->setLabel( /* @translate */ 'General');
26
-             //->setHydrator(new \Core\Model\Hydrator\ModelHydrator());
25
+                //->setLabel( /* @translate */ 'General');
26
+                //->setHydrator(new \Core\Model\Hydrator\ModelHydrator());
27 27
 
28 28
 
29 29
         $this->add([
Please login to merge, or discard this patch.
module/Auth/test/AuthTest/Form/UserStatusFieldsetTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         $this->assertSame([], $status->getValueOptions());
47 47
 
48 48
         $login = $this->fieldset->get('login');
49
-        $this->assertEquals( ['label' => 'Login name'], $login->getOptions());
49
+        $this->assertEquals(['label' => 'Login name'], $login->getOptions());
50 50
     }
51 51
 
52 52
     public function testGetInputFilterSpecification()
Please login to merge, or discard this patch.