Skip to content

Commit 16360fd

Browse files
#267: Applied PHP-CS-Fixer
1 parent 33c3492 commit 16360fd

File tree

7 files changed

+9
-2
lines changed

7 files changed

+9
-2
lines changed

src/BooleanToValueTransformer.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright (c) 2017 DarkWeb Design.
45
*
@@ -40,7 +41,7 @@ public function __construct(
4041
/** @var R */
4142
private readonly string|int|float|bool $trueValue = true,
4243
/** @var R */
43-
private readonly string|int|float|bool $falseValue = false
44+
private readonly string|int|float|bool $falseValue = false,
4445
) {
4546
}
4647

src/EntityToIdentifierTransformer.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright (c) 2017 DarkWeb Design.
45
*
@@ -58,7 +59,7 @@ class EntityToIdentifierTransformer implements DataTransformerInterface
5859
*/
5960
public function __construct(
6061
private readonly ObjectManager $entityManager,
61-
string $className
62+
string $className,
6263
) {
6364
$this->repository = $this->entityManager->getRepository($className);
6465
$this->metadata = $this->entityManager->getClassMetadata($className);

tests/BooleanToValueTransformerTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright (c) 2017 DarkWeb Design.
45
*

tests/EntityToIdentifierTransformerTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright (c) 2017 DarkWeb Design.
45
*

tests/Models/AbstractPerson.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright (c) 2018 DarkWeb Design.
45
*

tests/Models/City.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright (c) 2018 DarkWeb Design.
45
*

tests/Models/Employee.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Copyright (c) 2018 DarkWeb Design.
45
*

0 commit comments

Comments
 (0)