Commit dca2a84c by Alexander Makarov

Fixed missing callable in method signature

parent 593b478f
......@@ -86,7 +86,7 @@ interface ActiveQueryInterface extends QueryInterface
* Its signature should be `function($query)`, where `$query` is the query to be customized.
* @return static the relation object itself.
*/
public function via($relationName, $callable = null);
public function via($relationName, callable $callable = null);
/**
* Finds the related records for the specified primary record.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment