| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace AlexLcDee\RegistryContainer\Tests\Mocks;
- use AlexLcDee\RegistryContainer\Interfaces\RegistryContainerInterface;
- class Registry implements RegistryContainerInterface
- {
- private $typesMap;
- /**
- * MemoryRegistry constructor.
- * @param array $typesMap
- */
- public function __construct(array $typesMap)
- {
- $this->typesMap = $typesMap;
- }
- public function getTypesMap()
- {
- return $this->typesMap;
- }
- /**
- * @param string $key
- * @param mixed $value
- * @return mixed
- */
- public function add($key, $value)
- {
- }
- /**
- * @param string $key
- * @return mixed
- */
- public function get($key)
- {
- }
- /**
- * @param string $key
- * @return bool
- */
- public function has($key)
- {
- }
- }
|