We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6a205a commit 295ce03Copy full SHA for 295ce03
tests/unit/HitCounterServiceTest.php
@@ -48,9 +48,8 @@ protected function setUp()
48
// $this->request = $this->createMock(Request::class);
49
50
$dd = Mockery::mock('\coderius\hitCounter\components\deviceDetect\DeviceDetector');
51
- $hcr = Mockery::mock('coderius\hitCounter\repositories\HitCounterRepository')
52
- ->shouldReceive('save')
53
- ->once();
+ $hcr = Mockery::mock('coderius\hitCounter\repositories\HitCounterRepository');
+ $hcr->shouldReceive('save')->once();
54
$hcr->save();
55
$this->service = new HitCounterService($dd, $hcr);
56
}
0 commit comments