@@ -43,22 +43,22 @@ |
||
43 | 43 | |
44 | 44 | |
45 | 45 | $callback = $this->getMockBuilder('\Zend\Stdlib\CallbackHandler') |
46 | - ->disableOriginalConstructor() |
|
47 | - ->getMock(); |
|
46 | + ->disableOriginalConstructor() |
|
47 | + ->getMock(); |
|
48 | 48 | |
49 | 49 | $events = $this->getMockBuilder('\Zend\EventManager\SharedEventManagerInterface') |
50 | - ->setMethods(array('attach')) |
|
51 | - ->getMockForAbstractClass(); |
|
50 | + ->setMethods(array('attach')) |
|
51 | + ->getMockForAbstractClass(); |
|
52 | 52 | |
53 | 53 | $events->expects($this->once()) |
54 | - ->method('attach') |
|
55 | - ->with($expId, $expEvent, $expCallback, $expPriority) |
|
56 | - ->willReturn($expCallback); |
|
54 | + ->method('attach') |
|
55 | + ->with($expId, $expEvent, $expCallback, $expPriority) |
|
56 | + ->willReturn($expCallback); |
|
57 | 57 | |
58 | 58 | $events->expects($this->once()) |
59 | - ->method('detach') |
|
60 | - ->with($expCallback,'Zend\Mvc\Application') |
|
61 | - ->willReturn(true); |
|
59 | + ->method('detach') |
|
60 | + ->with($expCallback,'Zend\Mvc\Application') |
|
61 | + ->willReturn(true); |
|
62 | 62 | |
63 | 63 | |
64 | 64 | $target->attachShared($events); |
@@ -57,7 +57,7 @@ |
||
57 | 57 | |
58 | 58 | $events->expects($this->once()) |
59 | 59 | ->method('detach') |
60 | - ->with($expCallback,'Zend\Mvc\Application') |
|
60 | + ->with($expCallback, 'Zend\Mvc\Application') |
|
61 | 61 | ->willReturn(true); |
62 | 62 | |
63 | 63 |
@@ -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); |
@@ -58,7 +58,7 @@ |
||
58 | 58 | // ), |
59 | 59 | // ) |
60 | 60 | |
61 | - // Initial configuration with which to seed the ServiceManager. |
|
62 | - // Should be compatible with Zend\ServiceManager\Config. |
|
63 | - // 'service_manager' => array(), |
|
61 | + // Initial configuration with which to seed the ServiceManager. |
|
62 | + // Should be compatible with Zend\ServiceManager\Config. |
|
63 | + // 'service_manager' => array(), |
|
64 | 64 | ); |
65 | 65 | \ No newline at end of file |
@@ -3,7 +3,7 @@ |
||
3 | 3 | |
4 | 4 | return array( |
5 | 5 | // This should be an array of module namespaces used in the application. |
6 | - 'modules' => array_merge($commonModules,array( |
|
6 | + 'modules' => array_merge($commonModules, array( |
|
7 | 7 | 'Install', |
8 | 8 | )), |
9 | 9 |
@@ -99,8 +99,8 @@ |
||
99 | 99 | $application->expects($this->once())->method('getServiceManager')->willReturn($services); |
100 | 100 | |
101 | 101 | $event = $this->getMockBuilder('\Zend\Mvc\MvcEvent') |
102 | - ->disableOriginalConstructor() |
|
103 | - ->getMock(); |
|
102 | + ->disableOriginalConstructor() |
|
103 | + ->getMock(); |
|
104 | 104 | |
105 | 105 | $event->expects($this->once())->method('getApplication')->willReturn($application); |
106 | 106 |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | public function setUp() |
48 | 48 | { |
49 | - $this->moduleDir = realpath(__DIR__ . '/../../'); |
|
49 | + $this->moduleDir = realpath(__DIR__.'/../../'); |
|
50 | 50 | $this->target = new Module(); |
51 | 51 | } |
52 | 52 | /** |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | |
61 | 61 | public function testProvidesCorrectConfigArray() |
62 | 62 | { |
63 | - $config = include $this->moduleDir . '/config/module.config.php'; |
|
63 | + $config = include $this->moduleDir.'/config/module.config.php'; |
|
64 | 64 | |
65 | 65 | $this->assertEquals($config, $this->target->getConfig()); |
66 | 66 | } |
@@ -47,7 +47,7 @@ |
||
47 | 47 | $services->expects($this->once())->method('get')->with('FilterManager')->willReturn($filters); |
48 | 48 | |
49 | 49 | $target = new YawikConfigCreatorFactory(); |
50 | - $plugin = $target($services,'irrelevant'); |
|
50 | + $plugin = $target($services, 'irrelevant'); |
|
51 | 51 | |
52 | 52 | $this->assertInstanceOf('\Install\Controller\Plugin\YawikConfigCreator', $plugin); |
53 | 53 | } |
@@ -65,10 +65,10 @@ discard block |
||
65 | 65 | ->expects($this->exactly(2)) |
66 | 66 | ->method('get') |
67 | 67 | ->withConsecutive( |
68 | - ['FilterManager'],['doctrine.documentmanager.odm_default'] |
|
68 | + ['FilterManager'], ['doctrine.documentmanager.odm_default'] |
|
69 | 69 | ) |
70 | 70 | ->will($this->onConsecutiveCalls( |
71 | - $filters,$dm |
|
71 | + $filters, $dm |
|
72 | 72 | )) |
73 | 73 | ; |
74 | 74 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | ; |
87 | 87 | |
88 | 88 | /* @var \Install\Factory\Controller\Plugin\UserCreatorFactory $target */ |
89 | - $plugin = $target($services,'some-name',['connection' => 'some-connection']); |
|
89 | + $plugin = $target($services, 'some-name', ['connection' => 'some-connection']); |
|
90 | 90 | |
91 | 91 | $this->assertInstanceOf('\Install\Controller\Plugin\UserCreator', $plugin); |
92 | 92 | } |
@@ -51,8 +51,8 @@ discard block |
||
51 | 51 | $credentialFilter = $this->createMock(CredentialFilter::class); |
52 | 52 | $dm = $this->createMock(DocumentManager::class); |
53 | 53 | |
54 | - $this->target = new UserCreator($credentialFilter,$dm); |
|
55 | - $this->credentialFilter= $credentialFilter; |
|
54 | + $this->target = new UserCreator($credentialFilter, $dm); |
|
55 | + $this->credentialFilter = $credentialFilter; |
|
56 | 56 | $this->documentManager = $dm; |
57 | 57 | } |
58 | 58 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | ; |
85 | 85 | |
86 | 86 | $target = $this->target; |
87 | - $target->process('foo','password','[email protected]'); |
|
87 | + $target->process('foo', 'password', '[email protected]'); |
|
88 | 88 | |
89 | 89 | $repository->expects($this->any()) |
90 | 90 | ->method('store') |
@@ -93,6 +93,6 @@ discard block |
||
93 | 93 | |
94 | 94 | $this->expectException(\Exception::class); |
95 | 95 | $this->expectExceptionMessage('some-exception'); |
96 | - $target->process('foo','password','[email protected]'); |
|
96 | + $target->process('foo', 'password', '[email protected]'); |
|
97 | 97 | } |
98 | 98 | } |
@@ -44,9 +44,9 @@ discard block |
||
44 | 44 | public function invalidConnectionStringProvider() |
45 | 45 | { |
46 | 46 | return [ |
47 | - [ 'noconnstr' ], |
|
48 | - [ 'mongodb://user name:pass@server' ], |
|
49 | - [ 'mongodb://server/db.with.dot' ], |
|
47 | + ['noconnstr'], |
|
48 | + ['mongodb://user name:pass@server'], |
|
49 | + ['mongodb://server/db.with.dot'], |
|
50 | 50 | ]; |
51 | 51 | } |
52 | 52 | |
@@ -57,26 +57,26 @@ discard block |
||
57 | 57 | { |
58 | 58 | $target = new MongoDbConnectionString(); |
59 | 59 | |
60 | - $this->assertFalse($target->isValid($connStr), 'Failed with: ' . $connStr); |
|
60 | + $this->assertFalse($target->isValid($connStr), 'Failed with: '.$connStr); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | public function validConnectionStringsProvider() |
64 | 64 | { |
65 | 65 | return [ |
66 | - [ 'mongodb://server' ], |
|
67 | - [ 'mongodb://server/database' ], |
|
68 | - [ 'mongodb://server:1234' ], |
|
69 | - [ 'mongodb://server:1234/database' ], |
|
70 | - [ 'mongodb://user@server' ], |
|
71 | - [ 'mongodb://user@server:1234' ], |
|
72 | - [ 'mongodb://user@server/database' ], |
|
73 | - [ 'mongodb://user@server:1234/database' ], |
|
74 | - [ 'mongodb://user:pass@server' ], |
|
75 | - [ 'mongodb://user:pass@server/database' ], |
|
76 | - [ 'mongodb://user:pass@server:1234' ], |
|
77 | - [ 'mongodb://user:pass@server:1234/database' ], |
|
78 | - [ 'mongodb://server:23432/dbName?option=value' ], |
|
79 | - [ 'mongodb://name:[email protected]:27017,cluster0-shard-00-01-nvwmc.mongodb.net:27017,cluster0-shard-00-02-nvwmc.mongodb.net:27017/?ssl=true&replicaSet=Cluster0-shard-0&authSource=admin' ], |
|
66 | + ['mongodb://server'], |
|
67 | + ['mongodb://server/database'], |
|
68 | + ['mongodb://server:1234'], |
|
69 | + ['mongodb://server:1234/database'], |
|
70 | + ['mongodb://user@server'], |
|
71 | + ['mongodb://user@server:1234'], |
|
72 | + ['mongodb://user@server/database'], |
|
73 | + ['mongodb://user@server:1234/database'], |
|
74 | + ['mongodb://user:pass@server'], |
|
75 | + ['mongodb://user:pass@server/database'], |
|
76 | + ['mongodb://user:pass@server:1234'], |
|
77 | + ['mongodb://user:pass@server:1234/database'], |
|
78 | + ['mongodb://server:23432/dbName?option=value'], |
|
79 | + ['mongodb://name:[email protected]:27017,cluster0-shard-00-01-nvwmc.mongodb.net:27017,cluster0-shard-00-02-nvwmc.mongodb.net:27017/?ssl=true&replicaSet=Cluster0-shard-0&authSource=admin'], |
|
80 | 80 | ]; |
81 | 81 | } |
82 | 82 | |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | { |
90 | 90 | $target = new MongoDbConnectionString(); |
91 | 91 | |
92 | - $this->assertTrue($target->isValid($connStr), 'Failed with: "' . $connStr . '"'); |
|
92 | + $this->assertTrue($target->isValid($connStr), 'Failed with: "'.$connStr.'"'); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 |
@@ -33,9 +33,9 @@ discard block |
||
33 | 33 | public function testInit() |
34 | 34 | { |
35 | 35 | $target = $this->getMockBuilder('\Install\Form\Installation') |
36 | - ->setMethods(array('add', 'setName', 'setAttributes')) |
|
37 | - ->disableOriginalConstructor() |
|
38 | - ->getMock(); |
|
36 | + ->setMethods(array('add', 'setName', 'setAttributes')) |
|
37 | + ->disableOriginalConstructor() |
|
38 | + ->getMock(); |
|
39 | 39 | |
40 | 40 | $add1 = array( |
41 | 41 | 'type' => 'Text', |
@@ -73,18 +73,18 @@ discard block |
||
73 | 73 | ); |
74 | 74 | |
75 | 75 | $target->expects($this->exactly(4)) |
76 | - ->method('add') |
|
77 | - ->withConsecutive( |
|
78 | - array($add1), |
|
79 | - array($add2), |
|
80 | - array($add3), |
|
81 | - array($add4) |
|
82 | - )->will($this->returnSelf()); |
|
76 | + ->method('add') |
|
77 | + ->withConsecutive( |
|
78 | + array($add1), |
|
79 | + array($add2), |
|
80 | + array($add3), |
|
81 | + array($add4) |
|
82 | + )->will($this->returnSelf()); |
|
83 | 83 | |
84 | 84 | $target->expects($this->once())->method('setName')->with('installation'); |
85 | 85 | $target->expects($this->once())->method('setAttributes')->with(array( |
86 | - 'method' => 'post', |
|
87 | - ) |
|
86 | + 'method' => 'post', |
|
87 | + ) |
|
88 | 88 | ); |
89 | 89 | /* @var $target \PHPUnit_Framework_MockObject_MockObject|\Install\Form\Installation */ |
90 | 90 | $target->init(); |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | ), |
102 | 102 | 'validators' => array( |
103 | 103 | array('name' => MongoDbConnectionString::class, |
104 | - 'break_chain_on_failure' => true), |
|
104 | + 'break_chain_on_failure' => true), |
|
105 | 105 | array('name' => MongoDbConnection::class), |
106 | 106 | ), |
107 | 107 | ), |