Skip to content

Commit

Permalink
Fix findings from PHP-CS-Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
phansys committed Oct 6, 2024
1 parent 146d3f4 commit a50f89b
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Mapping/Annotation/Reference.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function __construct(
?string $class = null,
?string $identifier = null,
?string $mappedBy = null,
?string $inversedBy = null
?string $inversedBy = null,
) {
if ([] !== $data) {
Deprecation::trigger(
Expand Down
2 changes: 1 addition & 1 deletion src/Mapping/Annotation/Slug.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function __construct(
string $suffix = '',
array $handlers = [],
string $dateFormat = 'Y-m-d-H:i',
bool $uniqueOverTranslations = false
bool $uniqueOverTranslations = false,
) {
if ([] !== $data) {
Deprecation::trigger(
Expand Down
2 changes: 1 addition & 1 deletion src/Mapping/Annotation/SlugHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ final class SlugHandler implements GedmoAnnotation
public function __construct(
array $data = [],
string $class = '',
array $options = []
array $options = [],
) {
if ([] !== $data) {
Deprecation::trigger(
Expand Down
2 changes: 1 addition & 1 deletion src/Mapping/Annotation/SlugHandlerOption.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ final class SlugHandlerOption implements GedmoAnnotation
public function __construct(
array $data = [],
string $name = '',
$value = null
$value = null,
) {
if ([] !== $data) {
Deprecation::trigger(
Expand Down
2 changes: 1 addition & 1 deletion src/Mapping/Annotation/Tree.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function __construct(
?string $type = null,
bool $activateLocking = false,
int $lockingTimeout = 3,
?string $identifierMethod = null
?string $identifierMethod = null,
) {
if ([] !== $data) {
Deprecation::trigger(
Expand Down
2 changes: 1 addition & 1 deletion src/Mapping/Annotation/TreeLevel.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ final class TreeLevel implements GedmoAnnotation
*/
public function __construct(
array $data = [],
int $base = 0
int $base = 0,
) {
if ([] !== $data) {
Deprecation::trigger(
Expand Down
2 changes: 1 addition & 1 deletion src/Mapping/Annotation/TreePath.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function __construct(
string $separator = ',',
?bool $appendId = null,
bool $startsWithSeparator = false,
bool $endsWithSeparator = true
bool $endsWithSeparator = true,
) {
if ([] !== $data) {
Deprecation::trigger(
Expand Down
2 changes: 1 addition & 1 deletion src/Mapping/Annotation/Uploadable.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function __construct(
string $filenameGenerator = Validator::FILENAME_GENERATOR_NONE,
string $maxSize = '0',
string $allowedTypes = '',
string $disallowedTypes = ''
string $disallowedTypes = '',
) {
if ([] !== $data) {
Deprecation::trigger(
Expand Down

0 comments on commit a50f89b

Please sign in to comment.