Lines Matching refs:class
19 * class Foo {
37 * List of deprecated properties, in <property name> => <class> format
38 * where <class> is the the name of the class defining the property
50 * @param null $class name of the class defining the property
55 $class = null
57 $this->deprecatedPublicProperties[$property] = $class ?: get_class();
63 $class = $this->deprecatedPublicProperties[$name];
64 DebugHelper::dbgDeprecatedProperty($class, $name);
82 $class = $this->deprecatedPublicProperties[$name];
83 DebugHelper::dbgDeprecatedProperty($class, $name);
100 * class in the inheritance chain declared the property.
102 * @return string|bool Best guess for the class in which the property is defined.
106 // Easy branch: check for protected property / private property of the current class.
108 // The class name is not necessarily correct here but getting the correct class
114 // defined by the current class, for some value of "current" that differs slightly