util: fix constructor of callback response

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/767/head
Varun Patil 2023-08-03 20:54:44 -07:00
parent b7f6301c4e
commit b8160e6ae8
1 changed files with 1 additions and 0 deletions

View File

@ -37,6 +37,7 @@ trait UtilController
public function __construct(\Closure $closure)
{
parent::__construct();
$this->_closure = $closure;
}