Moved Core Table class to be used all over JCB.

This commit is contained in:
2022-11-20 10:51:56 +02:00
parent 9f5c7deec8
commit 1c7515d0f5
17 changed files with 548 additions and 463 deletions

View File

@@ -29,11 +29,11 @@ abstract class BaseRegistry extends JoomlaRegistry implements \JsonSerializable,
*
* @param string $path Registry path (e.g. joomla.content.showauthor)
*
* @return \ArrayIterator This object represented as an ArrayIterator.
* @return \ArrayIterator|null This object represented as an ArrayIterator.
*
* @since 3.4.0
*/
public function _($path)
public function _(string $path): ?\ArrayIterator
{
$data = $this->extract($path);