Clarify documentation

This commit is contained in:
Sebastian Meyer 2023-10-11 18:42:26 +02:00
parent 7b79f60005
commit ef1f8ba8ef
1 changed files with 5 additions and 5 deletions

View File

@ -53,17 +53,17 @@ trait Queue /* implements \ArrayAccess, \Countable, \SeekableIterator */
* - "bool" * - "bool"
* - "callable" * - "callable"
* - "countable" * - "countable"
* - "float" / "double" * - "float" or "double"
* - "int" / "integer" / "long" * - "int" or "integer" or "long"
* - "iterable" * - "iterable"
* - "null" * - "null"
* - "numeric" * - "numeric"
* - "object" / FQCN * - "object" or FQCN
* - "resource" * - "resource"
* - "scalar" * - "scalar"
* - "string" * - "string"
* Additionally, fully qualified class names can be specified to restrict * Fully qualified class names (FQCN) can be specified instead of the
* the types of objects. * generic type "object".
*/ */
protected array $allowedTypes = []; protected array $allowedTypes = [];