@@ -96,13 +96,13 @@ discard block |
||
| 96 | 96 | $professions, |
| 97 | 97 | $industries, |
| 98 | 98 | $types |
| 99 | - )); |
|
| 99 | + )); |
|
| 100 | 100 | } else { |
| 101 | 101 | $repository->expects($this->exactly(3))->method('findOneBy') |
| 102 | - ->withConsecutive( |
|
| 103 | - [['value' => 'professions']], |
|
| 104 | - [['value' => 'employmentTypes']], |
|
| 105 | - [['value' => 'industries']] |
|
| 102 | + ->withConsecutive( |
|
| 103 | + [['value' => 'professions']], |
|
| 104 | + [['value' => 'employmentTypes']], |
|
| 105 | + [['value' => 'industries']] |
|
| 106 | 106 | )->willReturn(null); |
| 107 | 107 | } |
| 108 | 108 | |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | ->with($this->isInstanceOf(Category::class)); |
| 118 | 118 | } elseif ($postRequest) { |
| 119 | 119 | $repositories->expects($this->exactly(1))->method('store') |
| 120 | - ->with($this->isInstanceOf(Category::class)); |
|
| 120 | + ->with($this->isInstanceOf(Category::class)); |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | |
@@ -59,8 +59,8 @@ |
||
| 59 | 59 | ; |
| 60 | 60 | |
| 61 | 61 | $auth->expects($this->once()) |
| 62 | - ->method('getUser') |
|
| 63 | - ->will($this->returnValue($user)) |
|
| 62 | + ->method('getUser') |
|
| 63 | + ->will($this->returnValue($user)) |
|
| 64 | 64 | ; |
| 65 | 65 | |
| 66 | 66 | $repository = $this->getMockBuilder(Job::class)->disableOriginalConstructor()->getMock(); |
@@ -45,17 +45,17 @@ |
||
| 45 | 45 | )); |
| 46 | 46 | |
| 47 | 47 | $services = $this->getMockBuilder('\Zend\ServiceManager\ServiceManager') |
| 48 | - ->disableOriginalConstructor() |
|
| 49 | - ->getMock(); |
|
| 48 | + ->disableOriginalConstructor() |
|
| 49 | + ->getMock(); |
|
| 50 | 50 | |
| 51 | 51 | $services->expects($this->exactly(3)) |
| 52 | - ->method('get') |
|
| 53 | - ->withConsecutive( |
|
| 54 | - array('Core/MailService'), |
|
| 55 | - array('Jobs/Options'), |
|
| 56 | - array('Core/Options') |
|
| 57 | - ) |
|
| 58 | - ->will($this->onConsecutiveCalls($mailService, $jobsOptions, $coreOptions)); |
|
| 52 | + ->method('get') |
|
| 53 | + ->withConsecutive( |
|
| 54 | + array('Core/MailService'), |
|
| 55 | + array('Jobs/Options'), |
|
| 56 | + array('Core/Options') |
|
| 57 | + ) |
|
| 58 | + ->will($this->onConsecutiveCalls($mailService, $jobsOptions, $coreOptions)); |
|
| 59 | 59 | |
| 60 | 60 | $expectedOptions = array( |
| 61 | 61 | 'siteName' => $coreOptions->getSiteName(), |
@@ -78,21 +78,21 @@ |
||
| 78 | 78 | $this->user = $user; |
| 79 | 79 | |
| 80 | 80 | $auth = $this->getMockBuilder('Auth\AuthenticationService') |
| 81 | - ->disableOriginalConstructor() |
|
| 82 | - ->getMock(); |
|
| 81 | + ->disableOriginalConstructor() |
|
| 82 | + ->getMock(); |
|
| 83 | 83 | |
| 84 | 84 | $auth->expects($this->once()) |
| 85 | - ->method('getUser') |
|
| 86 | - ->willReturn($user); |
|
| 85 | + ->method('getUser') |
|
| 86 | + ->willReturn($user); |
|
| 87 | 87 | |
| 88 | 88 | $services = $this->getMockBuilder('\Zend\ServiceManager\ServiceManager') |
| 89 | - ->disableOriginalConstructor() |
|
| 90 | - ->getMock(); |
|
| 89 | + ->disableOriginalConstructor() |
|
| 90 | + ->getMock(); |
|
| 91 | 91 | |
| 92 | 92 | $services->expects($this->once()) |
| 93 | - ->method('get') |
|
| 94 | - ->with('AuthenticationService') |
|
| 95 | - ->willReturn($auth); |
|
| 93 | + ->method('get') |
|
| 94 | + ->with('AuthenticationService') |
|
| 95 | + ->willReturn($auth); |
|
| 96 | 96 | |
| 97 | 97 | $this->services = $services; |
| 98 | 98 | } |
@@ -48,19 +48,19 @@ discard block |
||
| 48 | 48 | $channelOptions = new ChannelOptions(); |
| 49 | 49 | |
| 50 | 50 | $channelOptions->setCategory('testCat') |
| 51 | - ->setCurrency('€') |
|
| 52 | - ->setDescription('testDesc') |
|
| 53 | - ->setExternalkey('testExtKey') |
|
| 54 | - ->setHeadLine('testHL') |
|
| 55 | - ->setKey('testKey') |
|
| 56 | - ->setLabel('testLabel') |
|
| 57 | - ->setLinkText('testLinkTxt') |
|
| 58 | - ->setLogo('testLogo') |
|
| 59 | - ->setParams(array('test' => 'params')) |
|
| 60 | - ->setPrice('test', 1234) |
|
| 61 | - ->setPublishDuration(10) |
|
| 62 | - ->setRoute('testRoute') |
|
| 63 | - ->setTax(19); |
|
| 51 | + ->setCurrency('€') |
|
| 52 | + ->setDescription('testDesc') |
|
| 53 | + ->setExternalkey('testExtKey') |
|
| 54 | + ->setHeadLine('testHL') |
|
| 55 | + ->setKey('testKey') |
|
| 56 | + ->setLabel('testLabel') |
|
| 57 | + ->setLinkText('testLinkTxt') |
|
| 58 | + ->setLogo('testLogo') |
|
| 59 | + ->setParams(array('test' => 'params')) |
|
| 60 | + ->setPrice('test', 1234) |
|
| 61 | + ->setPublishDuration(10) |
|
| 62 | + ->setRoute('testRoute') |
|
| 63 | + ->setTax(19); |
|
| 64 | 64 | |
| 65 | 65 | $providerOptions->addChannel($channelOptions); |
| 66 | 66 | |
@@ -106,8 +106,8 @@ discard block |
||
| 106 | 106 | ); |
| 107 | 107 | |
| 108 | 108 | $services->expects($this->exactly(3)) |
| 109 | - ->method('get') |
|
| 110 | - ->will($this->returnValueMap($servicesMap)) |
|
| 109 | + ->method('get') |
|
| 110 | + ->will($this->returnValueMap($servicesMap)) |
|
| 111 | 111 | ; |
| 112 | 112 | |
| 113 | 113 | $target = new MultipostingSelectFactory(); |
@@ -43,8 +43,8 @@ |
||
| 43 | 43 | $provider=new ProviderOptions(); |
| 44 | 44 | |
| 45 | 45 | $serviceManagerMock = $this->getMockBuilder('\Zend\ServiceManager\ServiceManager') |
| 46 | - ->disableOriginalConstructor() |
|
| 47 | - ->getMock(); |
|
| 46 | + ->disableOriginalConstructor() |
|
| 47 | + ->getMock(); |
|
| 48 | 48 | |
| 49 | 49 | |
| 50 | 50 | $serviceManagerMock |
@@ -57,12 +57,12 @@ |
||
| 57 | 57 | ->willReturn($urlHelper); |
| 58 | 58 | |
| 59 | 59 | $serviceManagerMock = $this->getMockBuilder('\Zend\ServiceManager\ServiceManager') |
| 60 | - ->disableOriginalConstructor() |
|
| 61 | - ->getMock(); |
|
| 60 | + ->disableOriginalConstructor() |
|
| 61 | + ->getMock(); |
|
| 62 | 62 | |
| 63 | 63 | $serviceManagerMock->expects($this->once())->method('get') |
| 64 | - ->with('ViewHelperManager') |
|
| 65 | - ->willReturn($helpers); |
|
| 64 | + ->with('ViewHelperManager') |
|
| 65 | + ->willReturn($helpers); |
|
| 66 | 66 | |
| 67 | 67 | $service = $target->__invoke($serviceManagerMock, 'irrelevant'); |
| 68 | 68 | |
@@ -62,12 +62,12 @@ discard block |
||
| 62 | 62 | default: |
| 63 | 63 | $this->mailServiceMock = $this->getMockBuilder('\Core\Mail\MailService')->disableOriginalConstructor()->getMock(); |
| 64 | 64 | $this->mailServiceMock->expects($this->atLeastOnce()) |
| 65 | - ->method('send') |
|
| 66 | - ->with($this->isInstanceOf(HTMLTemplateMessage::class)) |
|
| 65 | + ->method('send') |
|
| 66 | + ->with($this->isInstanceOf(HTMLTemplateMessage::class)) |
|
| 67 | 67 | ; |
| 68 | 68 | $this->mailServiceMock->expects($this->any()) |
| 69 | - ->method('get')->with('htmltemplate') |
|
| 70 | - ->will($this->returnCallback(array($this, 'pushMailMock'))); |
|
| 69 | + ->method('get')->with('htmltemplate') |
|
| 70 | + ->will($this->returnCallback(array($this, 'pushMailMock'))); |
|
| 71 | 71 | |
| 72 | 72 | |
| 73 | 73 | $this->targetOptions = array('siteName' => 'Test', 'adminEmail' => 'test@admin'); |
@@ -106,29 +106,29 @@ discard block |
||
| 106 | 106 | public function testAttachsToAndDetachsFromJobEvents() |
| 107 | 107 | { |
| 108 | 108 | $events = $this->getMockBuilder('\Zend\EventManager\EventManager') |
| 109 | - ->disableOriginalConstructor() |
|
| 110 | - ->getMock(); |
|
| 109 | + ->disableOriginalConstructor() |
|
| 110 | + ->getMock(); |
|
| 111 | 111 | |
| 112 | 112 | $callback1 = [new MailSenderListenerMock(),'listen1']; |
| 113 | 113 | $callback2 = [new MailSenderListenerMock(),'listen2']; |
| 114 | 114 | $callback3 = [new MailSenderListenerMock(),'listen3']; |
| 115 | 115 | $events->expects($this->exactly(3)) |
| 116 | - ->method('attach') |
|
| 117 | - ->withConsecutive( |
|
| 118 | - array(JobEvent::EVENT_JOB_CREATED, array($this->target, 'onJobCreated')), |
|
| 119 | - array(JobEvent::EVENT_JOB_ACCEPTED, array($this->target, 'onJobAccepted')), |
|
| 120 | - array(JobEvent::EVENT_JOB_REJECTED, array($this->target, 'onJobRejected')) |
|
| 121 | - ) |
|
| 122 | - ->will($this->onConsecutiveCalls($callback1, $callback2, $callback3)) |
|
| 116 | + ->method('attach') |
|
| 117 | + ->withConsecutive( |
|
| 118 | + array(JobEvent::EVENT_JOB_CREATED, array($this->target, 'onJobCreated')), |
|
| 119 | + array(JobEvent::EVENT_JOB_ACCEPTED, array($this->target, 'onJobAccepted')), |
|
| 120 | + array(JobEvent::EVENT_JOB_REJECTED, array($this->target, 'onJobRejected')) |
|
| 121 | + ) |
|
| 122 | + ->will($this->onConsecutiveCalls($callback1, $callback2, $callback3)) |
|
| 123 | 123 | ; |
| 124 | 124 | |
| 125 | 125 | $events->expects($this->exactly(3)) |
| 126 | - ->method('detach') |
|
| 127 | - ->withConsecutive( |
|
| 128 | - array($callback1), |
|
| 129 | - array($callback2), |
|
| 130 | - array($callback3) |
|
| 131 | - )->willReturn(true); |
|
| 126 | + ->method('detach') |
|
| 127 | + ->withConsecutive( |
|
| 128 | + array($callback1), |
|
| 129 | + array($callback2), |
|
| 130 | + array($callback3) |
|
| 131 | + )->willReturn(true); |
|
| 132 | 132 | |
| 133 | 133 | $this->target->attach($events); |
| 134 | 134 | $this->assertAttributeEquals(array($callback1, $callback2, $callback3), 'listeners', $this->target); |
@@ -131,62 +131,62 @@ discard block |
||
| 131 | 131 | ->will($this->returnValue('<html />')); |
| 132 | 132 | |
| 133 | 133 | $this->viewPhpRendererStrategy = $this->getMockBuilder('\Zend\View\Strategy\PhpRendererStrategy') |
| 134 | - ->disableOriginalConstructor() |
|
| 135 | - ->getMock(); |
|
| 134 | + ->disableOriginalConstructor() |
|
| 135 | + ->getMock(); |
|
| 136 | 136 | |
| 137 | 137 | $this->viewPhpRendererStrategy->expects($this->once()) |
| 138 | - ->method('getRenderer') |
|
| 139 | - ->will($this->returnValue($this->renderer)); |
|
| 138 | + ->method('getRenderer') |
|
| 139 | + ->will($this->returnValue($this->renderer)); |
|
| 140 | 140 | |
| 141 | 141 | $this->response = $this->getMockBuilder('\Zend\Http\Response') |
| 142 | - ->disableOriginalConstructor() |
|
| 143 | - ->getMock(); |
|
| 142 | + ->disableOriginalConstructor() |
|
| 143 | + ->getMock(); |
|
| 144 | 144 | |
| 145 | 145 | $this->jobEvent = $this->getMockBuilder('\Jobs\Listener\Events\JobEvent') |
| 146 | - ->disableOriginalConstructor() |
|
| 147 | - ->getMock(); |
|
| 146 | + ->disableOriginalConstructor() |
|
| 147 | + ->getMock(); |
|
| 148 | 148 | |
| 149 | 149 | $this->job = $this->getMockBuilder('\Jobs\Entity\Job') |
| 150 | - ->disableOriginalConstructor() |
|
| 151 | - ->getMock(); |
|
| 150 | + ->disableOriginalConstructor() |
|
| 151 | + ->getMock(); |
|
| 152 | 152 | |
| 153 | 153 | $this->publisher = $this->getMockBuilder('\Jobs\Entity\Publisher') |
| 154 | - ->disableOriginalConstructor() |
|
| 155 | - ->getMock(); |
|
| 154 | + ->disableOriginalConstructor() |
|
| 155 | + ->getMock(); |
|
| 156 | 156 | |
| 157 | 157 | $this->publisher->expects($this->at(0)) |
| 158 | - ->method('__get') |
|
| 159 | - ->with('externalId') |
|
| 160 | - ->will($this->returnValue('externalId32')); |
|
| 158 | + ->method('__get') |
|
| 159 | + ->with('externalId') |
|
| 160 | + ->will($this->returnValue('externalId32')); |
|
| 161 | 161 | |
| 162 | 162 | $this->publisher->expects($this->at(1)) |
| 163 | - ->method('__get') |
|
| 164 | - ->with('reference') |
|
| 165 | - ->will($this->returnValue('reference32')); |
|
| 163 | + ->method('__get') |
|
| 164 | + ->with('reference') |
|
| 165 | + ->will($this->returnValue('reference32')); |
|
| 166 | 166 | |
| 167 | 167 | $this->publisher->expects($this->any()) |
| 168 | - ->method('__set') |
|
| 169 | - ->will($this->returnCallback($staticClassPrefix . 'publisherSetter')); |
|
| 168 | + ->method('__set') |
|
| 169 | + ->will($this->returnCallback($staticClassPrefix . 'publisherSetter')); |
|
| 170 | 170 | |
| 171 | 171 | $this->htmlAbsPathFilter = $this->getMockBuilder('\Core\Filter\HtmlAbsPathFilter') |
| 172 | 172 | ->disableOriginalConstructor() |
| 173 | 173 | ->getMock(); |
| 174 | 174 | |
| 175 | 175 | $this->htmlAbsPathFilter->expects($this->any()) |
| 176 | - ->method('filter') |
|
| 177 | - ->will($this->returnCallback($staticClassPrefix . 'absPathFilter')); |
|
| 176 | + ->method('filter') |
|
| 177 | + ->will($this->returnCallback($staticClassPrefix . 'absPathFilter')); |
|
| 178 | 178 | |
| 179 | 179 | $this->filterManager = $this->getMockBuilder('\Zend\ServiceManager\ServiceManager') |
| 180 | - ->disableOriginalConstructor() |
|
| 181 | - ->getMock(); |
|
| 180 | + ->disableOriginalConstructor() |
|
| 181 | + ->getMock(); |
|
| 182 | 182 | |
| 183 | 183 | $this->filterManager->expects($this->at(0)) |
| 184 | 184 | ->method('get') |
| 185 | 185 | ->willReturn($this->htmlAbsPathFilter); |
| 186 | 186 | |
| 187 | 187 | $this->restClient = $this->getMockBuilder('\Core\Service\RestClient') |
| 188 | - ->disableOriginalConstructor() |
|
| 189 | - ->getMock(); |
|
| 188 | + ->disableOriginalConstructor() |
|
| 189 | + ->getMock(); |
|
| 190 | 190 | |
| 191 | 191 | //$this->restClient->expects($this->at(0)) |
| 192 | 192 | // ->method('getHost') |
@@ -202,8 +202,8 @@ discard block |
||
| 202 | 202 | ->will($this->returnValue($this->response)); |
| 203 | 203 | |
| 204 | 204 | $this->organization = $this->getMockBuilder('\Organizations\Entity\Organization') |
| 205 | - ->disableOriginalConstructor() |
|
| 206 | - ->getMock(); |
|
| 205 | + ->disableOriginalConstructor() |
|
| 206 | + ->getMock(); |
|
| 207 | 207 | |
| 208 | 208 | $this->organization->expects($this->at(0)) |
| 209 | 209 | ->method('__get') |
@@ -211,21 +211,21 @@ discard block |
||
| 211 | 211 | ->will($this->returnValue('name32')); |
| 212 | 212 | |
| 213 | 213 | $this->provider = $this->getMockBuilder('\Jobs\Options\ProviderOptions') |
| 214 | - ->disableOriginalConstructor() |
|
| 215 | - ->getMock(); |
|
| 214 | + ->disableOriginalConstructor() |
|
| 215 | + ->getMock(); |
|
| 216 | 216 | |
| 217 | 217 | $this->providerChannel = $this->getMockBuilder('\Jobs\Options\ChannelOptions') |
| 218 | - ->disableOriginalConstructor() |
|
| 219 | - ->getMock(); |
|
| 218 | + ->disableOriginalConstructor() |
|
| 219 | + ->getMock(); |
|
| 220 | 220 | |
| 221 | 221 | $this->providerChannel->expects($this->any()) |
| 222 | - ->method('__get') |
|
| 223 | - ->will($this->returnCallback($staticClassPrefix . 'providerChannelGetter')); |
|
| 222 | + ->method('__get') |
|
| 223 | + ->will($this->returnCallback($staticClassPrefix . 'providerChannelGetter')); |
|
| 224 | 224 | |
| 225 | 225 | $this->provider->expects($this->any(0)) |
| 226 | - ->method('__get') |
|
| 227 | - ->with('channels') |
|
| 228 | - ->willReturn(array('bbb value' => $this->providerChannel)); |
|
| 226 | + ->method('__get') |
|
| 227 | + ->with('channels') |
|
| 228 | + ->willReturn(array('bbb value' => $this->providerChannel)); |
|
| 229 | 229 | |
| 230 | 230 | $this->viewModel = $this->getMockBuilder('\Zend\View\Model\ViewModel') |
| 231 | 231 | ->disableOriginalConstructor() |
@@ -306,13 +306,13 @@ discard block |
||
| 306 | 306 | protected function setRestReturn($referenceUpdate, $applyIdUpdate) |
| 307 | 307 | { |
| 308 | 308 | $this->response->expects($this->any()) |
| 309 | - ->method('getBody') |
|
| 310 | - ->will($this->returnValue(json_encode( |
|
| 311 | - array( |
|
| 312 | - 'referenceUpdate' => $referenceUpdate, |
|
| 313 | - 'applyIdUpdate' => $applyIdUpdate |
|
| 314 | - ) |
|
| 315 | - ))); |
|
| 309 | + ->method('getBody') |
|
| 310 | + ->will($this->returnValue(json_encode( |
|
| 311 | + array( |
|
| 312 | + 'referenceUpdate' => $referenceUpdate, |
|
| 313 | + 'applyIdUpdate' => $applyIdUpdate |
|
| 314 | + ) |
|
| 315 | + ))); |
|
| 316 | 316 | } |
| 317 | 317 | |
| 318 | 318 | |