Skip to content

Commit f606293

Browse files
committed
Fixed phpcs
Signed-off-by: alexmerlin <alex.merlin.1985@gmail.com>
1 parent c45ba6f commit f606293

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

test/Unit/Admin/Entity/AdminLoginTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ class AdminLoginTest extends UnitTest
1818
{
1919
public function testAnnotations(): void
2020
{
21-
$reflection = new ReflectionClass(AdminLogin::class);
22-
$entity = $reflection->getAttributes(Entity::class);
23-
$table = $reflection->getAttributes(Table::class);
21+
$reflection = new ReflectionClass(AdminLogin::class);
22+
$entity = $reflection->getAttributes(Entity::class);
23+
$table = $reflection->getAttributes(Table::class);
2424

2525
$this->assertNotEmpty($entity[0]);
2626
$this->assertNotEmpty($table[0]);

test/Unit/Admin/Entity/AdminRoleTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ class AdminRoleTest extends UnitTest
1818
{
1919
public function testAnnotations(): void
2020
{
21-
$reflection = new ReflectionClass(AdminRole::class);
22-
$entity = $reflection->getAttributes(Entity::class);
23-
$table = $reflection->getAttributes(Table::class);
21+
$reflection = new ReflectionClass(AdminRole::class);
22+
$entity = $reflection->getAttributes(Entity::class);
23+
$table = $reflection->getAttributes(Table::class);
2424

2525
$this->assertNotEmpty($entity[0]);
2626
$this->assertNotEmpty($table[0]);

test/Unit/Admin/Entity/AdminTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ protected function setUp(): void
3838

3939
public function testAnnotations(): void
4040
{
41-
$reflection = new ReflectionClass(Admin::class);
42-
$entity = $reflection->getAttributes(Entity::class);
43-
$table = $reflection->getAttributes(Table::class);
41+
$reflection = new ReflectionClass(Admin::class);
42+
$entity = $reflection->getAttributes(Entity::class);
43+
$table = $reflection->getAttributes(Table::class);
4444

4545
$this->assertNotEmpty($entity[0]);
4646
$this->assertNotEmpty($table[0]);

0 commit comments

Comments
 (0)