Skip to content

Commit

Permalink
Fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet authored and github-actions[bot] committed Nov 13, 2024
1 parent 4a6b447 commit c883321
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Mapper/Builder/OptionsBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ final class OptionsBuilder
private function __construct(
private string $type,
string $fieldName,
string $targetEntity
string $targetEntity,
) {
$this->options['fieldName'] = $fieldName;
$this->options['targetEntity'] = $targetEntity;
Expand Down
2 changes: 1 addition & 1 deletion src/Model/BaseManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ abstract class BaseManager implements ManagerInterface, ClearableManagerInterfac
*/
public function __construct(
protected string $class,
protected ManagerRegistry $registry
protected ManagerRegistry $registry,
) {
}

Expand Down

0 comments on commit c883321

Please sign in to comment.