Skip to content

Commit d8ae366

Browse files
committed
Style CI fix 🎭
(cherry picked from commit bab2c2e)
1 parent 11798bd commit d8ae366

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

tests/Integration/SpatialTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ protected function assertDatabaseHas($table, array $data, $connection = null)
6565
}
6666
}
6767

68-
protected function assertException($exceptionName) {
69-
if(method_exists(parent::class, 'expectException')) {
68+
protected function assertException($exceptionName)
69+
{
70+
if (method_exists(parent::class, 'expectException')) {
7071
parent::expectException($exceptionName);
71-
}
72-
else {
72+
} else {
7373
$this->setExpectedException($exceptionName);
7474
}
7575
}

tests/Unit/BaseTestCase.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ public function tearDown()
66
{
77
Mockery::close();
88
}
9-
10-
protected function assertException($exceptionName) {
11-
if(method_exists(parent::class, 'expectException')) {
9+
10+
protected function assertException($exceptionName)
11+
{
12+
if (method_exists(parent::class, 'expectException')) {
1213
parent::expectException($exceptionName);
13-
}
14-
else {
14+
} else {
1515
$this->setExpectedException($exceptionName);
1616
}
1717
}

0 commit comments

Comments
 (0)