Skip to content

Commit c3b2e8e

Browse files
lucasdotdevactions-user
lucasdotdev
authored andcommitted
Fix styling
1 parent a7f61a4 commit c3b2e8e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Traits/CountsQueries.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ public function whileCountingQueries(callable $callback)
2525

2626
public function startCountingQueries()
2727
{
28-
if (!$this->hasDispatchedQueryCounter) {
28+
if (! $this->hasDispatchedQueryCounter) {
2929
$this->dispatchQueryCounter();
3030
}
3131

32-
$this->isCountingQueries = true;
32+
$this->isCountingQueries = true;
3333
$this->hasDispatchedQueryCounter = true;
3434
}
3535

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace LucasDotDev\DBQueriesCounter\Tests;
44

5-
use Orchestra\Testbench\TestCase as Orchestra;
65
use LucasDotDev\DBQueriesCounter\DBQueriesCounterServiceProvider;
76
use LucasDotDev\DBQueriesCounter\Traits\CountsQueries;
7+
use Orchestra\Testbench\TestCase as Orchestra;
88

99
class TestCase extends Orchestra
1010
{

0 commit comments

Comments
 (0)