method analyzeProperty documentation in bbn\Parsers\Php

Function to take all the information relating to the property sought and if it also contains that of his relative

function(string $prop, ReflectionClass $cls) { if ($arr = $this->_get_property_info($prop, $cls)) { $parent = $cls->getParentClass(); while ($parent) { if ($arr_parent = $this->_get_property_info($prop, $parent)) { $arr['parent'] = $arr_parent; break; } $parent = $parent->getParentClass(); } } return $arr ?: null; }

Function to take all the information relating to the property sought and if it also contains that of his relative BBN is a suite of PHP and JS libraries and VueJS components - all open-source! bbn.io, build applications, the quick way

This website uses cookies to ensure you get the best experience on our website.