Skip to content

Commit ac4a287

Browse files
committed
Fix for older PHP versions
1 parent b228e77 commit ac4a287

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Ussd.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ public function __construct($menu, string $sessionId)
4040
$this->store->put('_breakpoints', '[]');
4141
}
4242

43-
public static function make(\DOMXPath|string $menu, string $sessionId): self
43+
/**
44+
* @param \DOMXPath|string $menu
45+
*/
46+
public static function make($menu, string $sessionId): self
4447
{
4548
return new static($menu, $sessionId);
4649
}

0 commit comments

Comments
 (0)