kahlan\Summary::get PHP Method

get() public method

Get a data of a specific key.
public get ( string $type ) : array
$type string The type of data.
return array
    public function get($type)
    {
        return isset($this->_data[$type]) ? $this->_data[$type] : [];
    }