File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -511,7 +511,7 @@ public static function query(Query $query): QueryResult
511
511
* @param array|null $fields
512
512
* @param array|int|Limit|null $limit
513
513
* @param array|GroupField[]|string[]|null $group
514
- * @param bool $saveResults Whether results of this query should be saved in the model registry.
514
+ * @param bool $saveResultsToRegistry Whether results of this query should be saved in the model registry.
515
515
* @return QueryResult<static>|static[]
516
516
* @noinspection PhpDocSignatureInspection
517
517
*/
Original file line number Diff line number Diff line change @@ -103,12 +103,12 @@ public function getGroup(): ?array
103
103
/**
104
104
* Set whether results of this query should be saved in the model registry
105
105
*
106
- * @param bool $saveResults
106
+ * @param bool $saveResultsToRegistry
107
107
* @return $this
108
108
*/
109
- public function saveResultsToRegistry (bool $ saveResults = true ): static
109
+ public function saveResultsToRegistry (bool $ saveResultsToRegistry = true ): static
110
110
{
111
- $ this ->saveResultsToRegistry = $ saveResults ;
111
+ $ this ->saveResultsToRegistry = $ saveResultsToRegistry ;
112
112
return $ this ;
113
113
}
114
114
You can’t perform that action at this time.
0 commit comments