Skip to content

Commit 3a67a97

Browse files
committed
Fixed new phpcs issues.
1 parent 0419636 commit 3a67a97

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Entity/Icon.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function getEntities(): array
6060
{
6161
return $this->entities;
6262
}
63-
63+
6464
/**
6565
* Sets the contents of the icon file.
6666
* @param string $content

test/src/Entity/ExportJobTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function testSetAndGetImportTime(): void
7272
$this->assertSame($entity, $entity->setImportTime($importTime));
7373
$this->assertSame($importTime, $entity->getImportTime());
7474
}
75-
75+
7676
/**
7777
* Tests the setting and getting the error message.
7878
* @covers ::getErrorMessage
@@ -82,7 +82,7 @@ public function testSetAndGetErrorMessage(): void
8282
{
8383
$errorMessage = 'abc';
8484
$entity = new ExportJob();
85-
85+
8686
$this->assertSame($entity, $entity->setErrorMessage($errorMessage));
8787
$this->assertSame($errorMessage, $entity->getErrorMessage());
8888
}

0 commit comments

Comments
 (0)