* @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace VDM\Joomla\Componentbuilder\Abstraction; use Joomla\Registry\Registry as JoomlaRegistry; /** * Registry * * So we have full control over this class * * @since 3.2.0 */ abstract class BaseRegistry extends JoomlaRegistry implements \JsonSerializable, \ArrayAccess, \IteratorAggregate, \Countable { /** * Method to iterate over any part of the registry * * @param string $path Registry path (e.g. joomla.content.showauthor) * * @return \ArrayIterator|null This object represented as an ArrayIterator. * * @since 3.4.0 */ public function _(string $path): ?\ArrayIterator { $data = $this->extract($path); if ($data === null) { return null; } return $data->getIterator(); } }