mirror of
https://github.com/processwire/processwire.git
synced 2025-08-11 17:24:46 +02:00
Fix issue processwire/processwire-issues#473 where SelectableOptionManager.php:addOptions() method had incorrect "array" type hint in method argument
This commit is contained in:
@@ -641,7 +641,7 @@ class SelectableOptionManager extends Wire {
|
|||||||
* @return int Number of options added
|
* @return int Number of options added
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function addOptions(Field $field, array $options) {
|
public function addOptions(Field $field, $options) {
|
||||||
|
|
||||||
$database = $this->wire('database');
|
$database = $this->wire('database');
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user