Skip to content

Commit

Permalink
PHP-CS-Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienHarper committed Mar 8, 2022
1 parent 21ab69d commit 94d4d4b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public function testRemove(): void
self::assertSame([
'class' => Author::class,
'id' => 1,
'label' => 'John Doe', //Author::class.'#1',
'label' => 'John Doe', // Author::class.'#1',
'table' => $entityManager->getClassMetadata(Author::class)->getTableName(),
], $entry->getDiffs(), 'audit entry diffs is ok.');
}
Expand Down Expand Up @@ -221,7 +221,7 @@ public function testAssociateOneToMany(): void
'class' => Author::class,
'field' => 'posts',
'id' => 1,
'label' => 'John Doe', //Author::class.'#1',
'label' => 'John Doe', // Author::class.'#1',
'table' => $entityManager->getClassMetadata(Author::class)->getTableName(),
],
'target' => [
Expand Down Expand Up @@ -295,7 +295,7 @@ public function testDissociateOneToMany(): void
'class' => Author::class,
'field' => 'posts',
'id' => 1,
'label' => 'John Doe', //Author::class.'#1',
'label' => 'John Doe', // Author::class.'#1',
'table' => $entityManager->getClassMetadata(Author::class)->getTableName(),
],
'target' => [
Expand Down Expand Up @@ -424,7 +424,7 @@ public function testAssociateManyToMany(): void
'class' => Tag::class,
'field' => 'posts',
'id' => 2,
'label' => 'house', //Tag::class.'#2',
'label' => 'house', // Tag::class.'#2',
'table' => $entityManager->getClassMetadata(Tag::class)->getTableName(),
],
], $entry->getDiffs(), 'audit entry diffs is ok.');
Expand All @@ -449,7 +449,7 @@ public function testAssociateManyToMany(): void
'class' => Tag::class,
'field' => 'posts',
'id' => 1,
'label' => 'techno', //Tag::class.'#1',
'label' => 'techno', // Tag::class.'#1',
'table' => $entityManager->getClassMetadata(Tag::class)->getTableName(),
],
], $entry->getDiffs(), 'audit entry diffs is ok.');
Expand Down Expand Up @@ -574,7 +574,7 @@ public function testDissociateManyToMany(): void
'class' => Tag::class,
'field' => 'posts',
'id' => 2,
'label' => 'house', //Tag::class.'#2',
'label' => 'house', // Tag::class.'#2',
'table' => $entityManager->getClassMetadata(Tag::class)->getTableName(),
],
], $entry->getDiffs(), 'audit entry diffs is ok.');
Expand Down

0 comments on commit 94d4d4b

Please sign in to comment.