for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace RestTemplate\Repository;
use Builder\Psr11;
use ByJG\Config\Exception\ConfigNotFoundException;
use ByJG\Config\Exception\EnvironmentException;
use ByJG\Config\Exception\KeyNotFoundException;
use Psr\SimpleCache\InvalidArgumentException;
class DummyHexRepository extends BaseRepository
{
/**
* DummyRepository constructor.
*
* @throws ConfigNotFoundException
* @throws EnvironmentException
* @throws KeyNotFoundException
* @throws InvalidArgumentException
*/
public function __construct()
$this->repository = Psr11::container()->get('DUMMYHEX_TABLE');
}