for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Tleckie\Translate;
use ArrayIterator;
use Tleckie\Translate\Catalogue\CatalogueInterface;
/**
* Class Catalogue
*
* @package Tleckie\Translate
* @category Catalogue
* @author Teodoro Leckie Westberg <[email protected]>
*/
class Catalogue extends ArrayIterator implements CatalogueInterface
{
* @inheritdoc
public function getByKey(string $key): mixed
return $this[$key] ?? null;
}