style: Apply php-cs-fixer updates

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2024-02-05 07:14:04 +01:00
parent f83290f075
commit 1fdc164462
13 changed files with 18 additions and 18 deletions

View File

@@ -31,7 +31,7 @@ use OCA\Deck\Db\Card;
class CardUpdatedEvent extends ACardEvent {
private $cardBefore;
public function __construct(Card $card, Card $before = null) {
public function __construct(Card $card, ?Card $before = null) {
parent::__construct($card);
$this->cardBefore = $before;
}