Fix stub for assign method

This commit is contained in:
Nik Karbaum 2019-01-10 02:16:44 +01:00
parent 5715e730fd
commit e8cc264a3d
1 changed files with 4 additions and 1 deletions

View File

@ -22,9 +22,12 @@ class Lua {
/**
* @link https://secure.php.net/manual/en/lua.assign.php
*
* @param string $name
* @param mixed $value
*
* @return $this|null Returns $this or NULL on failure.
*/
public function assign(string $name, string $value): void {}
public function assign(string $name, $value) {}
/**
* @link https://secure.php.net/manual/en/lua.call.php