Skip to content

Commit a6f8b49

Browse files
#60 Fix PHP 8.1 Fatal error: Null can not be used as a standalone type
1 parent c91aed9 commit a6f8b49

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Entity/ProcessSchedule.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,10 @@ public function setContext(array $context): void
8787
$this->context = $context;
8888
}
8989

90-
public function getNextExecution(): null
90+
/**
91+
* @return null
92+
*/
93+
public function getNextExecution()
9194
{
9295
return null;
9396
}

0 commit comments

Comments
 (0)