Skip to content
This repository was archived by the owner on Nov 4, 2021. It is now read-only.

Commit cf4ad92

Browse files
Style fixes
1 parent 1d19873 commit cf4ad92

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/AbstractTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
abstract class AbstractTestCase extends TestCase
88
{
9-
protected function tearDown() : void
9+
protected function tearDown(): void
1010
{
1111
parent::tearDown();
1212

tests/ElasticEngineTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ElasticEngineTest extends AbstractTestCase
2020
*/
2121
private $engine;
2222

23-
protected function setUp() : void
23+
protected function setUp(): void
2424
{
2525
$this->engine = $this
2626
->getMockBuilder(ElasticEngine::class)

tests/Indexers/AbstractIndexerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ abstract class AbstractIndexerTest extends AbstractTestCase
1515
*/
1616
protected $models;
1717

18-
protected function setUp() : void
18+
protected function setUp(): void
1919
{
2020
$this->models = new Collection([
2121
$this->mockModel([

0 commit comments

Comments
 (0)