Fixes a bug in Action->setTitle() where a return type was expected instead of void.
This commit is contained in:
+1
-2
@@ -55,9 +55,8 @@ class Action
|
||||
|
||||
/**
|
||||
* @param string|null $title
|
||||
* @return string|null
|
||||
*/
|
||||
public function setTitle(?string $title): ?string
|
||||
public function setTitle(?string $title): void
|
||||
{
|
||||
$this->title = $title;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user