Skip to content

Commit

Permalink
Fix PHP CS
Browse files Browse the repository at this point in the history
  • Loading branch information
bocharsky-bw committed Nov 22, 2023
1 parent c84c7a5 commit d8b341d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions tests/Fixtures/Entity/ResetPasswordTestFixtureRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,31 +32,31 @@ final class ResetPasswordTestFixtureRequest implements ResetPasswordRequestInter
*/
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: "integer")]
#[ORM\Column(type: 'integer')]
public $id;

/**
* @ORM\Column(type="string", nullable=true)
*/
#[ORM\Column(type: "string", nullable: true)]
#[ORM\Column(type: 'string', nullable: true)]
public $selector;

/**
* @ORM\Column(type="datetime_immutable", nullable=true)
*/
#[ORM\Column(type: "datetime_immutable", nullable: true)]
#[ORM\Column(type: 'datetime_immutable', nullable: true)]
public $expiresAt;

/**
* @ORM\Column(type="datetime_immutable", nullable=true)
*/
#[ORM\Column(type: "datetime_immutable", nullable: true)]
#[ORM\Column(type: 'datetime_immutable', nullable: true)]
public $requestedAt;

/**
* @ORM\ManyToOne(targetEntity="ResetPasswordTestFixtureUser")
*/
#[ORM\ManyToOne(targetEntity: "ResetPasswordTestFixtureUser")]
#[ORM\ManyToOne(targetEntity: 'ResetPasswordTestFixtureUser')]
public $user;

public function getRequestedAt(): \DateTimeInterface
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixtures/Entity/ResetPasswordTestFixtureUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ final class ResetPasswordTestFixtureUser
*/
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: "integer")]
#[ORM\Column(type: 'integer')]
private $id;
}

0 comments on commit d8b341d

Please sign in to comment.