Skip to content

Commit

Permalink
Amended Coding Style
Browse files Browse the repository at this point in the history
  • Loading branch information
fwolfsjaeger committed Aug 29, 2023
1 parent 5676e53 commit d5ba3a4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Mapping/Annotation/Blameable.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct(
string $on = 'update',
$field = null,
$value = null,
string $setterMethod = null
?string $setterMethod = null
) {
if ([] !== $data) {
@trigger_error(sprintf(
Expand Down
2 changes: 1 addition & 1 deletion src/Mapping/Annotation/IpTraceable.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct(
string $on = 'update',
$field = null,
$value = null,
string $setterMethod = null
?string $setterMethod = null
) {
if ([] !== $data) {
@trigger_error(sprintf(
Expand Down
2 changes: 1 addition & 1 deletion src/Mapping/Annotation/SoftDeleteable.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function __construct(
string $fieldName = 'deletedAt',
bool $timeAware = false,
bool $hardDelete = true,
string $setterMethod = null
?string $setterMethod = null
) {
if ([] !== $data) {
@trigger_error(sprintf(
Expand Down
2 changes: 1 addition & 1 deletion src/Mapping/Annotation/Timestampable.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct(
string $on = 'update',
$field = null,
$value = null,
string $setterMethod = null
?string $setterMethod = null
) {
if ([] !== $data) {
@trigger_error(sprintf(
Expand Down

0 comments on commit d5ba3a4

Please sign in to comment.