@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | { |
| 135 | 135 | $postData = array( |
| 136 | 136 | 'name' => uniqid('name'), |
| 137 | - 'email' => uniqid('email') . '@' . uniqid('host') . '.com.pl' |
|
| 137 | + 'email' => uniqid('email').'@'.uniqid('host').'.com.pl' |
|
| 138 | 138 | ); |
| 139 | 139 | |
| 140 | 140 | $request = new Request(); |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | { |
| 182 | 182 | $postData = array( |
| 183 | 183 | 'name' => uniqid('name'), |
| 184 | - 'email' => uniqid('email') . '@' . uniqid('host') . '.com.pl' |
|
| 184 | + 'email' => uniqid('email').'@'.uniqid('host').'.com.pl' |
|
| 185 | 185 | ); |
| 186 | 186 | |
| 187 | 187 | $request = new Request(); |
@@ -228,7 +228,7 @@ discard block |
||
| 228 | 228 | { |
| 229 | 229 | $postData = array( |
| 230 | 230 | 'name' => uniqid('name'), |
| 231 | - 'email' => uniqid('email') . '@' . uniqid('host') . '.com.pl' |
|
| 231 | + 'email' => uniqid('email').'@'.uniqid('host').'.com.pl' |
|
| 232 | 232 | ); |
| 233 | 233 | |
| 234 | 234 | $request = new Request(); |
@@ -54,8 +54,8 @@ |
||
| 54 | 54 | |
| 55 | 55 | |
| 56 | 56 | $this->serviceMock = $this->getMockBuilder('Auth\Service\Register') |
| 57 | - ->disableOriginalConstructor() |
|
| 58 | - ->getMock(); |
|
| 57 | + ->disableOriginalConstructor() |
|
| 58 | + ->getMock(); |
|
| 59 | 59 | |
| 60 | 60 | |
| 61 | 61 | $this->paramsMock = $this->getMockBuilder('Laminas\Mvc\Controller\Plugin\Params') |
@@ -242,10 +242,10 @@ |
||
| 242 | 242 | public function provideGetDisplayNameTestData() |
| 243 | 243 | { |
| 244 | 244 | return array( |
| 245 | - array(null, null, "[email protected]", "[email protected]"), |
|
| 245 | + array(null, null, "[email protected]", "[email protected]"), |
|
| 246 | 246 | array(" Carsten ", " Bleek ", "[email protected]", "Carsten Bleek"), |
| 247 | - array(null, " Bleek ", "[email protected]", "Bleek"), |
|
| 248 | - array(" Carsten ", null, "[email protected]", "[email protected]"), |
|
| 247 | + array(null, " Bleek ", "[email protected]", "Bleek"), |
|
| 248 | + array(" Carsten ", null, "[email protected]", "[email protected]"), |
|
| 249 | 249 | ); |
| 250 | 250 | } |
| 251 | 251 | |
@@ -83,9 +83,9 @@ |
||
| 83 | 83 | */ |
| 84 | 84 | public function testGetId() |
| 85 | 85 | { |
| 86 | - $this->assertEquals('token:' . $this->target->getToken(), $this->target->getId()); |
|
| 86 | + $this->assertEquals('token:'.$this->target->getToken(), $this->target->getId()); |
|
| 87 | 87 | |
| 88 | - $id=uniqid(); |
|
| 88 | + $id = uniqid(); |
|
| 89 | 89 | $this->target->setId($id); |
| 90 | 90 | $this->assertEquals($id, $this->target->getId()); |
| 91 | 91 | } |
@@ -63,10 +63,10 @@ discard block |
||
| 63 | 63 | public function provideRoleTestData() |
| 64 | 64 | { |
| 65 | 65 | return array( |
| 66 | - array(null, User::ROLE_USER), |
|
| 67 | - array(User::ROLE_ADMIN, User::ROLE_ADMIN), |
|
| 66 | + array(null, User::ROLE_USER), |
|
| 67 | + array(User::ROLE_ADMIN, User::ROLE_ADMIN), |
|
| 68 | 68 | array(User::ROLE_RECRUITER, User::ROLE_RECRUITER), |
| 69 | - array(User::ROLE_USER, User::ROLE_USER), |
|
| 69 | + array(User::ROLE_USER, User::ROLE_USER), |
|
| 70 | 70 | ); |
| 71 | 71 | } |
| 72 | 72 | /** |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | public function provideInfoTestData() |
| 85 | 85 | { |
| 86 | 86 | return array( |
| 87 | - array(new Info(), new Info()), |
|
| 87 | + array(new Info(), new Info()), |
|
| 88 | 88 | ); |
| 89 | 89 | } |
| 90 | 90 | /** |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | public function provideTokenTestData() |
| 177 | 177 | { |
| 178 | 178 | return array( |
| 179 | - array(new Token(), new Token()), |
|
| 179 | + array(new Token(), new Token()), |
|
| 180 | 180 | ); |
| 181 | 181 | } |
| 182 | 182 | } |
@@ -60,8 +60,8 @@ discard block |
||
| 60 | 60 | |
| 61 | 61 | public function provideSessionTestData() |
| 62 | 62 | { |
| 63 | - $data = ["a"=>"b","c"=>[1,2,3,4]]; |
|
| 64 | - $serialized=serialize($data); |
|
| 63 | + $data = ["a"=>"b", "c"=>[1, 2, 3, 4]]; |
|
| 64 | + $serialized = serialize($data); |
|
| 65 | 65 | |
| 66 | 66 | return [ |
| 67 | 67 | [$data, $data], |
@@ -91,9 +91,9 @@ discard block |
||
| 91 | 91 | $timezone = new \DateTimeZone(getenv('TIMEZONE')); |
| 92 | 92 | $date = "2015-01-12 12:11:06"; |
| 93 | 93 | return [ |
| 94 | - [null, new \DateTime('now', $timezone)], |
|
| 94 | + [null, new \DateTime('now', $timezone)], |
|
| 95 | 95 | [new \DateTime($date), new \DateTime($date, $timezone)], |
| 96 | - [$date, new \DateTime($date, $timezone)], |
|
| 96 | + [$date, new \DateTime($date, $timezone)], |
|
| 97 | 97 | ]; |
| 98 | 98 | } |
| 99 | 99 | /** |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | 'imgDir' => 'public/captcha', |
| 93 | 93 | 'imgUrl' => '/captcha' |
| 94 | 94 | ]; |
| 95 | - $target=$this->options; |
|
| 95 | + $target = $this->options; |
|
| 96 | 96 | $target->setImage($params); |
| 97 | 97 | |
| 98 | 98 | $this->assertSame($target->getImage(), $params); |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | public function testSetGetReCaptcha() |
| 106 | 106 | { |
| 107 | 107 | $params = new ReCaptcha(); |
| 108 | - $target=$this->options; |
|
| 108 | + $target = $this->options; |
|
| 109 | 109 | $target->setReCaptcha($params); |
| 110 | 110 | $this->assertSame($target->getReCaptcha(), $params); |
| 111 | 111 | } |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | */ |
| 40 | 40 | public function getConfig() |
| 41 | 41 | { |
| 42 | - return ModuleConfigLoader::load(__DIR__ . '/../../config'); |
|
| 42 | + return ModuleConfigLoader::load(__DIR__.'/../../config'); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | /** |
@@ -71,10 +71,10 @@ discard block |
||
| 71 | 71 | // This is an hack due to bad design of Hybridauth |
| 72 | 72 | // This ensures the class from "addtional-providers" is loaded. |
| 73 | 73 | array( |
| 74 | - 'Hybrid_Providers_XING' => $addProvidersDir . '/hybridauth-xing/Providers/XING.php', |
|
| 74 | + 'Hybrid_Providers_XING' => $addProvidersDir.'/hybridauth-xing/Providers/XING.php', |
|
| 75 | 75 | ), |
| 76 | 76 | array( |
| 77 | - 'Hybrid_Providers_Github' => $addProvidersDir. '/hybridauth-github/Providers/GitHub.php', |
|
| 77 | + 'Hybrid_Providers_Github' => $addProvidersDir.'/hybridauth-github/Providers/GitHub.php', |
|
| 78 | 78 | ), |
| 79 | 79 | ), |
| 80 | 80 | ); |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | |
| 91 | 91 | $eventManager->attach( |
| 92 | 92 | MvcEvent::EVENT_ROUTE, |
| 93 | - function (MvcEvent $e) use ($services) { |
|
| 93 | + function(MvcEvent $e) use ($services) { |
|
| 94 | 94 | /* @var $checkPermissionsListener \Acl\Listener\CheckPermissionsListener */ |
| 95 | 95 | $checkPermissionsListener = $services->get('Auth/CheckPermissionsListener'); |
| 96 | 96 | $checkPermissionsListener->onRoute($e); |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | |
| 101 | 101 | $eventManager->attach( |
| 102 | 102 | MvcEvent::EVENT_DISPATCH, |
| 103 | - function (MvcEvent $e) use ($services) { |
|
| 103 | + function(MvcEvent $e) use ($services) { |
|
| 104 | 104 | /** @var CheckPermissionsListener $checkPermissionsListener */ |
| 105 | 105 | $checkPermissionsListener = $services->get('Auth/CheckPermissionsListener'); |
| 106 | 106 | $checkPermissionsListener->onDispatch($e); |
@@ -39,12 +39,12 @@ |
||
| 39 | 39 | StatusSelectFactory::class, |
| 40 | 40 | '@testCreateService' => [ |
| 41 | 41 | 'mock' => [ |
| 42 | - '__invoke' => ['@with' => 'getInvokeMockArgs','count' => 1] |
|
| 42 | + '__invoke' => ['@with' => 'getInvokeMockArgs', 'count' => 1] |
|
| 43 | 43 | ] |
| 44 | 44 | ], |
| 45 | 45 | ]; |
| 46 | 46 | |
| 47 | - private $inheritance = [ FactoryInterface::class ]; |
|
| 47 | + private $inheritance = [FactoryInterface::class]; |
|
| 48 | 48 | |
| 49 | 49 | private function getInvokeMockArgs() |
| 50 | 50 | { |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | ], |
| 45 | 45 | ]; |
| 46 | 46 | |
| 47 | - private $inheritance = [ FactoryInterface::class ]; |
|
| 47 | + private $inheritance = [FactoryInterface::class]; |
|
| 48 | 48 | |
| 49 | 49 | private function getInvokeArgs() |
| 50 | 50 | { |