Back to FeedEntry class

Method __get

public mixed
__get
(mixed $name)
Magic method to return values for feed entry properties.
Parameters
  • string $name The name of the property.
Returns
  • mixed
Since
  • 3.1.4
Class: FeedEntry
Project: Joomla

Method __get - Source code

/**
 * Magic method to return values for feed entry properties.
 *
 * @param   string  $name  The name of the property.
 *
 * @return  mixed
 *
 * @since   3.1.4
 */
public function __get($name)
{
    return $this->properties[$name] ?? null;
}