kahlan\Reporters::get PHP Method

get() public method

Gets a reporter
public get ( string $name ) : mixed
$name string The reporter name.
return mixed The reporter or `null` if not found.
    public function get($name)
    {
        if (isset($this->_reporters[$name])) {
            return $this->_reporters[$name];
        }
    }