mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 06:15:19 +08:00
Fixed missing callable in method signature
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user