@@ -34,9 +34,9 @@ discard block |
||
34 | 34 | public function testInit() |
35 | 35 | { |
36 | 36 | $target = $this->getMockBuilder('\Install\Form\Installation') |
37 | - ->setMethods(array('add', 'setName', 'setAttributes')) |
|
38 | - ->disableOriginalConstructor() |
|
39 | - ->getMock(); |
|
37 | + ->setMethods(array('add', 'setName', 'setAttributes')) |
|
38 | + ->disableOriginalConstructor() |
|
39 | + ->getMock(); |
|
40 | 40 | |
41 | 41 | $add1 = array( |
42 | 42 | 'type' => 'Text', |
@@ -74,19 +74,19 @@ discard block |
||
74 | 74 | ); |
75 | 75 | |
76 | 76 | $target->expects($this->exactly(4)) |
77 | - ->method('add') |
|
78 | - ->withConsecutive( |
|
79 | - array($add1), |
|
80 | - array($add2), |
|
81 | - array($add3), |
|
82 | - array($add4) |
|
83 | - )->will($this->returnSelf()); |
|
77 | + ->method('add') |
|
78 | + ->withConsecutive( |
|
79 | + array($add1), |
|
80 | + array($add2), |
|
81 | + array($add3), |
|
82 | + array($add4) |
|
83 | + )->will($this->returnSelf()); |
|
84 | 84 | |
85 | 85 | $target->expects($this->once())->method('setName')->with('installation'); |
86 | 86 | $target->expects($this->once())->method('setAttributes')->with( |
87 | 87 | array( |
88 | - 'method' => 'post', |
|
89 | - ) |
|
88 | + 'method' => 'post', |
|
89 | + ) |
|
90 | 90 | ); |
91 | 91 | /* @var $target \PHPUnit_Framework_MockObject_MockObject|\Install\Form\Installation */ |
92 | 92 | $target->init(); |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | ), |
104 | 104 | 'validators' => array( |
105 | 105 | array('name' => MongoDbConnectionString::class, |
106 | - 'break_chain_on_failure' => true), |
|
106 | + 'break_chain_on_failure' => true), |
|
107 | 107 | array('name' => MongoDbConnection::class), |
108 | 108 | ), |
109 | 109 | ), |
@@ -104,15 +104,15 @@ |
||
104 | 104 | ->getMock(); |
105 | 105 | |
106 | 106 | $target->expects($this->exactly(4)) |
107 | - ->method('add') |
|
108 | - ->withConsecutive( |
|
109 | - array($expectAdd1), |
|
110 | - array($expectAdd2), |
|
111 | - array($expectAdd3), |
|
112 | - array($expectAdd4) |
|
107 | + ->method('add') |
|
108 | + ->withConsecutive( |
|
109 | + array($expectAdd1), |
|
110 | + array($expectAdd2), |
|
111 | + array($expectAdd3), |
|
112 | + array($expectAdd4) |
|
113 | 113 | |
114 | 114 | |
115 | - ); |
|
115 | + ); |
|
116 | 116 | |
117 | 117 | $target->init(); |
118 | 118 | } |
@@ -88,11 +88,11 @@ |
||
88 | 88 | ->getMock(); |
89 | 89 | |
90 | 90 | $target->expects($this->exactly(2)) |
91 | - ->method('add') |
|
92 | - ->withConsecutive( |
|
93 | - array($expectAdd1), |
|
94 | - array($expectAdd2) |
|
95 | - ); |
|
91 | + ->method('add') |
|
92 | + ->withConsecutive( |
|
93 | + array($expectAdd1), |
|
94 | + array($expectAdd2) |
|
95 | + ); |
|
96 | 96 | |
97 | 97 | $target->init(); |
98 | 98 | $this->assertEquals('employees', $target->getName()); |
@@ -211,11 +211,11 @@ discard block |
||
211 | 211 | $this->assertTrue($this->target->switchUser('switchedUser')); |
212 | 212 | $this->assertEquals( |
213 | 213 | [ |
214 | - 'isSwitchedUser' => true, |
|
215 | - 'originalUser' => 'originalUser', |
|
216 | - 'params' => [], 'ref' => '/some/ref', |
|
217 | - 'session' => serialize($oldSession) |
|
218 | - ], |
|
214 | + 'isSwitchedUser' => true, |
|
215 | + 'originalUser' => 'originalUser', |
|
216 | + 'params' => [], 'ref' => '/some/ref', |
|
217 | + 'session' => serialize($oldSession) |
|
218 | + ], |
|
219 | 219 | $_SESSION[UserSwitcher::SESSION_NAMESPACE]->getArrayCopy() |
220 | 220 | ); |
221 | 221 | $_SESSION = []; |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | $acl->expects($this->once())->method('setUser')->with($this->isInstanceOf(User::class)); |
241 | 241 | |
242 | 242 | $user = $this->getMockBuilder(User::class)->disableOriginalConstructor() |
243 | - ->setMethods(['getId'])->getMock(); |
|
243 | + ->setMethods(['getId'])->getMock(); |
|
244 | 244 | $user->expects($this->any())->method('getId')->willReturn('switchedUser'); |
245 | 245 | |
246 | 246 | $this->target->switchUser($user, ['ref' => 'ref']); |
@@ -19,7 +19,6 @@ |
||
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Class ManageControllerTest |
22 | - |
|
23 | 22 | * @package AuthTest\Controller |
24 | 23 | */ |
25 | 24 | class ManageControllerTest extends AbstractFunctionalControllerTestCase |
@@ -129,7 +129,7 @@ |
||
129 | 129 | [$this->equalTo(MvcEvent::EVENT_DISPATCH_ERROR), $this->identicalTo([$this->listener, 'prepareExceptionViewModel'], $this->identicalTo(null))], |
130 | 130 | [$this->equalTo(MvcEvent::EVENT_RENDER_ERROR), $this->identicalTo([$this->listener, 'prepareExceptionViewModel'], $this->identicalTo(null))], |
131 | 131 | [$this->equalTo(MvcEvent::EVENT_ROUTE), $this->identicalTo([$this->listener, 'checkDeactivatedUser'], $this->identicalTo(null))] |
132 | - ); |
|
132 | + ); |
|
133 | 133 | |
134 | 134 | $this->listener->attach($eventManager); |
135 | 135 | } |
@@ -98,7 +98,7 @@ |
||
98 | 98 | ->getMock() |
99 | 99 | ; |
100 | 100 | $container = $this->getMockBuilder(ContainerInterface::class) |
101 | - ->getMock(); |
|
101 | + ->getMock(); |
|
102 | 102 | $container->expects($this->once()) |
103 | 103 | ->method('get') |
104 | 104 | ->with('ServiceManager') |
@@ -126,14 +126,14 @@ |
||
126 | 126 | |
127 | 127 | $formData = ['data' => 'value']; |
128 | 128 | $hydrator = $this->getMockBuilder(HydratorInterface::class) |
129 | - ->setMethods(['hydrate', 'extract']) |
|
130 | - ->getMockForAbstractClass(); |
|
129 | + ->setMethods(['hydrate', 'extract']) |
|
130 | + ->getMockForAbstractClass(); |
|
131 | 131 | $hydrator->expects($this->once())->method('extract')->with($this->isInstanceOf(Parameters::class))->willReturn($formData); |
132 | 132 | $hydrator->expects($this->once())->method('hydrate')->with($formData, $this->isInstanceOf(Parameters::class)); |
133 | 133 | |
134 | 134 | $form = $this->getMockBuilder(Form::class) |
135 | - ->setMethods(['getHydrator', 'setData']) |
|
136 | - ->getMock(); |
|
135 | + ->setMethods(['getHydrator', 'setData']) |
|
136 | + ->getMock(); |
|
137 | 137 | $form->expects($this->once())->method('gethydrator')->willReturn($hydrator); |
138 | 138 | $form->expects($this->once())->method('setData')->with($formData); |
139 | 139 | $this->formElementManagerMock |
@@ -47,16 +47,16 @@ discard block |
||
47 | 47 | $services = new ServiceManager(); |
48 | 48 | $this->assertTrue( |
49 | 49 | $this->target->canCreate( |
50 | - $services, |
|
51 | - 'Any.string/Value/Events' |
|
52 | - ), |
|
50 | + $services, |
|
51 | + 'Any.string/Value/Events' |
|
52 | + ), |
|
53 | 53 | 'Checking correct name failed.' |
54 | 54 | ); |
55 | 55 | $this->assertFalse( |
56 | 56 | $this->target->canCreate( |
57 | - $services, |
|
58 | - 'Any.string.not.ending/in/Events.but has it in the middle!' |
|
59 | - ), |
|
57 | + $services, |
|
58 | + 'Any.string.not.ending/in/Events.but has it in the middle!' |
|
59 | + ), |
|
60 | 60 | 'Checking invalid name failed.' |
61 | 61 | ); |
62 | 62 | } |
@@ -98,8 +98,8 @@ discard block |
||
98 | 98 | |
99 | 99 | /* @var EventManagerAbstractFactory|\PHPUnit_Framework_MockObject_MockObject $target */ |
100 | 100 | $target = $this->getMockBuilder('\Core\Factory\EventManager\EventManagerAbstractFactory') |
101 | - ->setMethods([ 'createEventManager', 'attachListeners' ]) |
|
102 | - ->getMock(); |
|
101 | + ->setMethods([ 'createEventManager', 'attachListeners' ]) |
|
102 | + ->getMock(); |
|
103 | 103 | |
104 | 104 | $services = new ServiceManager(); |
105 | 105 | $services->setService('Config', $config); |