Skip to content

Commit 4549597

Browse files
committed
Fix CS
1 parent 6c083c2 commit 4549597

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

src/Annotation/AnnotationExtension.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@ private static function resolveEnvValues(string $configValue) : string
7777
}
7878

7979
$errorMessage = sprintf('Environment variable "%s" does not exist', $matches['name']);
80-
throw new class($errorMessage) extends \RuntimeException implements Exception {
81-
};
80+
throw new class($errorMessage) extends \RuntimeException implements Exception { };
8281
}, $configValue);
8382
}
8483
}

src/Expectation/Expectations.php

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

1616
trait Expectations
1717
{
18-
use RequestExpectations;
1918
use PreparedStatementExpectations;
19+
use RequestExpectations;
2020
}

src/Expectation/RequestExpectations.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ trait RequestExpectations
2222
use DeleteRequestExpectations;
2323
use EvalRequestExpectations;
2424
use ExecuteRequestExpectations;
25-
use PrepareRequestExpectations;
2625
use InsertRequestExpectations;
26+
use PrepareRequestExpectations;
2727
use ReplaceRequestExpectations;
2828
use SelectRequestExpectations;
2929
use UpdateRequestExpectations;

src/TestCase.php

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

2121
abstract class TestCase extends BaseTestCase
2222
{
23-
use TestDoubleClient;
2423
use Annotations;
2524
use Expectations;
25+
use TestDoubleClient;
2626
}

tests/Expectation/PreparedStatementExpectationsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424
final class PreparedStatementExpectationsTest extends TestCase
2525
{
26-
use TestDoubleClient;
2726
use PreparedStatementExpectations;
27+
use TestDoubleClient;
2828

2929
private $oldValue;
3030
private $newValue;

tests/Expectation/RequestExpectationsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424
final class RequestExpectationsTest extends TestCase
2525
{
26-
use TestDoubleClient;
2726
use RequestExpectations;
27+
use TestDoubleClient;
2828

2929
private $oldValue;
3030
private $newValue;

0 commit comments

Comments
 (0)