We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1effc0a commit a093f3aCopy full SHA for a093f3a
components/property_info.rst
@@ -409,6 +409,17 @@ constructor. It supports return and scalar types for PHP 7.
409
// Initializable information
410
$reflectionExtractor->isInitializable($class, $property);
411
412
+.. tip::
413
+
414
+ By default, the static properties are also extracted. To excluded them,
415
+ you can use the ``exclude_static_properties`` context option.
416
417
+ .. code-block:: php
418
419
+ $reflectionExtractor->getProperties($class, [
420
+ ReflectionExtractor::EXCLUDE_STATIC_PROPERTIES => true,
421
+ ]);
422
423
PhpDocExtractor
424
~~~~~~~~~~~~~~~
425
0 commit comments