@@ -154,7 +154,7 @@ |
||
154 | 154 | { |
155 | 155 | $baseUrl = '/base'; |
156 | 156 | $path = '/some/uri'; |
157 | - $uri = $baseUrl . $path; |
|
157 | + $uri = $baseUrl.$path; |
|
158 | 158 | $this->event->setError(Application::ERROR_ROUTER_NO_MATCH); |
159 | 159 | |
160 | 160 | $this->request->expects($this->once()) |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | private $target = WriteAssertion::class; |
34 | 34 | |
35 | - private $inheritance = [ AssertionInterface::class ]; |
|
35 | + private $inheritance = [AssertionInterface::class]; |
|
36 | 36 | |
37 | 37 | public function dataProvider() |
38 | 38 | { |
@@ -45,15 +45,15 @@ discard block |
||
45 | 45 | $validResourceWPerms->setUser($validRole); |
46 | 46 | |
47 | 47 | return [ |
48 | - [ $invalidRole, $invalidResource, 'invalidPrivilege', false ], |
|
49 | - [ $validRole, $invalidResource, 'invalid', false ], |
|
50 | - [ $invalidRole, $validResourceWoPerms, 'invalid', false ], |
|
51 | - [ $invalidRole, $validResourceWPerms, 'invalid', false ], |
|
52 | - [ $invalidRole, $invalidResource, 'edit', false ], |
|
53 | - [ $validRole, $invalidResource, 'edit', false ], |
|
54 | - [ $validRole, $validResourceWPerms, 'invalid', false ], |
|
55 | - [ $validRole, $validResourceWoPerms, 'edit', false ], |
|
56 | - [ $validRole, $validResourceWPerms, 'edit', true ], |
|
48 | + [$invalidRole, $invalidResource, 'invalidPrivilege', false], |
|
49 | + [$validRole, $invalidResource, 'invalid', false], |
|
50 | + [$invalidRole, $validResourceWoPerms, 'invalid', false], |
|
51 | + [$invalidRole, $validResourceWPerms, 'invalid', false], |
|
52 | + [$invalidRole, $invalidResource, 'edit', false], |
|
53 | + [$validRole, $invalidResource, 'edit', false], |
|
54 | + [$validRole, $validResourceWPerms, 'invalid', false], |
|
55 | + [$validRole, $validResourceWoPerms, 'edit', false], |
|
56 | + [$validRole, $validResourceWPerms, 'edit', true], |
|
57 | 57 | |
58 | 58 | ]; |
59 | 59 | } |
@@ -46,7 +46,7 @@ |
||
46 | 46 | public function __construct($options = null) |
47 | 47 | { |
48 | 48 | // We are relative to the application dir (see public/index.php) |
49 | - $this->filePath = 'public' . $this->uriPath; |
|
49 | + $this->filePath = 'public'.$this->uriPath; |
|
50 | 50 | |
51 | 51 | parent::__construct($options); |
52 | 52 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | ], |
40 | 40 | '@testCreateServiceInvokesItselfAndResetsCreationOptions' => [ |
41 | 41 | 'class' => AbstractCustomizableFieldsetFactory::class, |
42 | - 'mock' => [ '__invoke' ] |
|
42 | + 'mock' => ['__invoke'] |
|
43 | 43 | ], |
44 | 44 | '@testInvokationThrowsExceptionIfOptionsNameIsNotSpecified' => [ |
45 | 45 | 'class' => ConcreteAbstractCustomizableFieldsetFactoryWithClassName::class |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | ], |
53 | 53 | ]; |
54 | 54 | |
55 | - private $inheritance = [ FactoryInterface::class ]; |
|
55 | + private $inheritance = [FactoryInterface::class]; |
|
56 | 56 | |
57 | 57 | public function testCreationOptions() |
58 | 58 | { |
@@ -38,10 +38,10 @@ |
||
38 | 38 | */ |
39 | 39 | private $target = [ |
40 | 40 | AjaxUrlFactory::class, |
41 | - '@testCreateService' => [ 'mock' => ['__invoke']], |
|
41 | + '@testCreateService' => ['mock' => ['__invoke']], |
|
42 | 42 | ]; |
43 | 43 | |
44 | - private $inheritance = [ FactoryInterface::class ]; |
|
44 | + private $inheritance = [FactoryInterface::class]; |
|
45 | 45 | |
46 | 46 | public function testCreateService() |
47 | 47 | { |
@@ -42,7 +42,7 @@ |
||
42 | 42 | ], |
43 | 43 | ]; |
44 | 44 | |
45 | - private $inheritance = [ FactoryInterface::class ]; |
|
45 | + private $inheritance = [FactoryInterface::class]; |
|
46 | 46 | |
47 | 47 | /** |
48 | 48 | * @testdox Method createService() proxies to __invoke() |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | private $target = DefaultNavigationFactory::class; |
35 | 35 | |
36 | - private $inheritance = [ '\Zend\Navigation\Service\DefaultNavigationFactory' ]; |
|
36 | + private $inheritance = ['\Zend\Navigation\Service\DefaultNavigationFactory']; |
|
37 | 37 | |
38 | 38 | public function testSetsActiveFlagOnPagesProvidingTheActiveOnOption() |
39 | 39 | { |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | 'active_on' => 'notMatchedRoute', |
46 | 46 | ], |
47 | 47 | 'page3' => [ |
48 | - 'active_on' => [ 'matchedRouteName', 'anotherRoute' ], |
|
48 | + 'active_on' => ['matchedRouteName', 'anotherRoute'], |
|
49 | 49 | ], |
50 | 50 | 'page4' => [] |
51 | 51 | ]; |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | 'active_on' => 'notMatchedRoute', |
76 | 76 | ], |
77 | 77 | 'page3' => [ |
78 | - 'active_on' => [ 'matchedRouteName', 'anotherRoute' ], |
|
78 | + 'active_on' => ['matchedRouteName', 'anotherRoute'], |
|
79 | 79 | ], |
80 | 80 | 'page4' => [] |
81 | 81 | ]; |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | |
29 | 29 | protected $target = '\Core\Controller\AdminControllerEvent'; |
30 | 30 | |
31 | - protected $inheritance = [ '\Zend\EventManager\Event' ]; |
|
31 | + protected $inheritance = ['\Zend\EventManager\Event']; |
|
32 | 32 | |
33 | 33 | public function testCreatesModelPriorityListUponCreation() |
34 | 34 | { |
@@ -62,10 +62,10 @@ discard block |
||
62 | 62 | public function provideAddViewTemplateTestData() |
63 | 63 | { |
64 | 64 | return [ |
65 | - [ [ 'test', 'template' ], ['test', 'template', [], 0] ], |
|
66 | - [ [ 'test', 'template', [ 'var' => 'iable']], [ 'test', 'template', [ 'var' => 'iable'], 0] ], |
|
67 | - [ [ 'test', 'template', 10] , ['test', 'template', [], 10] ], |
|
68 | - [ [ 'test', 'template', [ 'var' => 'iable'], 10 ], [ 'test', 'template', [ 'var' => 'iable'], 10 ]], |
|
65 | + [['test', 'template'], ['test', 'template', [], 0]], |
|
66 | + [['test', 'template', ['var' => 'iable']], ['test', 'template', ['var' => 'iable'], 0]], |
|
67 | + [['test', 'template', 10], ['test', 'template', [], 10]], |
|
68 | + [['test', 'template', ['var' => 'iable'], 10], ['test', 'template', ['var' => 'iable'], 10]], |
|
69 | 69 | ]; |
70 | 70 | } |
71 | 71 | |
@@ -91,12 +91,12 @@ discard block |
||
91 | 91 | public function provideAddViewVariablesTestData() |
92 | 92 | { |
93 | 93 | return [ |
94 | - [ [ 'test' ] , ['test', ['name' => 'test'], 0] ], |
|
95 | - [ [ 'test', [ 'var' => 'iable'] ], [ 'test', [ 'name' => 'test', 'var' => 'iable'], 0 ] ], |
|
96 | - [ [ 'test', [ 'var' => 'iable'], 10], [ 'test', [ 'name' => 'test', 'var' => 'iable'], 10 ]], |
|
97 | - [ [ [ 'name' => 'other', 'var' => 'test' ], 10], ['other', ['name' => 'other', 'var' => 'test' ], 10] ], |
|
98 | - [ [ 'test', ['name' => 'other'] ], [ 'test', [ 'name' => 'other' ], 0] ], |
|
99 | - [ [ 'test', 10 ], ['test', ['name' => 'test'], 10]], |
|
94 | + [['test'], ['test', ['name' => 'test'], 0]], |
|
95 | + [['test', ['var' => 'iable']], ['test', ['name' => 'test', 'var' => 'iable'], 0]], |
|
96 | + [['test', ['var' => 'iable'], 10], ['test', ['name' => 'test', 'var' => 'iable'], 10]], |
|
97 | + [[['name' => 'other', 'var' => 'test'], 10], ['other', ['name' => 'other', 'var' => 'test'], 10]], |
|
98 | + [['test', ['name' => 'other']], ['test', ['name' => 'other'], 0]], |
|
99 | + [['test', 10], ['test', ['name' => 'test'], 10]], |
|
100 | 100 | ]; |
101 | 101 | } |
102 | 102 |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | 'class' => '\Core\Controller\Plugin\SearchForm', |
40 | 40 | 'args' => 'getTargetArgs', |
41 | 41 | '@testInvokationProxiesToGet' => [ |
42 | - 'mock' => [ 'get' ], |
|
42 | + 'mock' => ['get'], |
|
43 | 43 | 'args' => false, |
44 | 44 | ], |
45 | 45 | '@testInheritance' => [ |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | ], |
48 | 48 | ]; |
49 | 49 | |
50 | - protected $inheritance = [ AbstractPlugin::class ]; |
|
50 | + protected $inheritance = [AbstractPlugin::class]; |
|
51 | 51 | |
52 | 52 | protected function getTargetArgs() |
53 | 53 | { |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | public function testInvokationProxiesToGet() |
64 | 64 | { |
65 | 65 | $form = 'TestForm'; |
66 | - $options = ['test' => 'test']; |
|
66 | + $options = ['test' => 'test']; |
|
67 | 67 | |
68 | 68 | $this->target->expects($this->once())->method('get')->with($form, $options); |
69 | 69 |
@@ -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 |