Skip to content

Commit

Permalink
Fix CS v3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Feb 8, 2022
1 parent e6c0cf5 commit b3e06bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/Persistence/ArrayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
use Atk4\Data\Exception;
use Atk4\Data\Model;
use Atk4\Data\Persistence;
use Atk4\Data\Tests\Model\Female as Female;
use Atk4\Data\Tests\Model\Male as Male;
use Atk4\Data\Tests\Model\Female;
use Atk4\Data\Tests\Model\Male;

class ArrayTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Persistence/Sql/ExpressionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ public function testConsumeException1(): void
public function testConsumeException2(): void
{
$this->expectException(Exception::class);
$this->callProtected($this->e(), 'consume', new \StdClass());
$this->callProtected($this->e(), 'consume', new \stdClass());
}

/**
Expand Down

0 comments on commit b3e06bc

Please sign in to comment.