Skip to content
Snippets Groups Projects
Commit 78f00f80 authored by Maxence Lange's avatar Maxence Lange
Browse files

nullable params

parent 9bdc5823
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,7 @@ class ManuallyLockedException extends LockedException { ...@@ -65,7 +65,7 @@ class ManuallyLockedException extends LockedException {
* *
* @since 18.0.0 * @since 18.0.0
*/ */
public function __construct(string $path, \Exception $previous = null, string $existingLock = null, string $owner = null, int $timeout = -1) { public function __construct(string $path, \Exception $previous = null, ?string $existingLock = null, ?string $owner = null, int $timeout = -1) {
parent::__construct($path, $previous, $existingLock); parent::__construct($path, $previous, $existingLock);
$this->owner = $owner; $this->owner = $owner;
$this->timeout = $timeout; $this->timeout = $timeout;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment