for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mpociot\ApiDoc\Tools;
class DocumentationConfig
{
private $data;
public function __construct(array $config = [])
$this->data = $config;
}
public function get($key, $default = null)
return data_get($this->data, $key, $default);