1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-11 01:04:16 +02:00

phpdoc typo fix in Selectors.php

This commit is contained in:
Ryan Cramer
2023-08-04 11:46:57 -04:00
parent 044175df04
commit 0f8615bf88

View File

@@ -1620,7 +1620,7 @@ class Selectors extends WireArray {
* - `operator` (string): Require this operator (default='' for any)
* - `value` (string|int): Require this value (default=null for any)
* - `remove` (bool): Remove matched Selector from Selectors returned in verbose result? (default=false)
* @return array|bool True of has field, false if not, or array with the following if 'verbose' option requested:
* @return array|bool True if has field, false if not, or array with the following, if 'verbose' option requested:
* - `result` (bool): Did it match (true or false)
* - `selector` (Selector|null): Selector object that matched (only if result is true)
* - `selectors` (Selectors|null): Selectors object that was analyzed or null if not needed