Skip to content

Commit

Permalink
drop default values
Browse files Browse the repository at this point in the history
  • Loading branch information
nekufa committed Oct 14, 2024
1 parent 9fa53ff commit c989966
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Entity/Link.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function __construct(
public int $timestamp,
public int $actor,
public array $data,
public int $idle = 0,
public int $idle,
) {
}

Expand Down
2 changes: 1 addition & 1 deletion src/Entity/Override.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function __construct(
public int $timestamp,
public int $actor,
public array $data,
public int $idle = 0,
public int $idle,
) {
}

Expand Down

0 comments on commit c989966

Please sign in to comment.