Caffeinated\Themes\Themes::getProperty PHP Method

getProperty() public method

Get a theme manifest property value.
public getProperty ( string $property, null | string $default = null ) : mixed
$property string
$default null | string
return mixed
    public function getProperty($property, $default = null)
    {
        list($theme, $key) = explode('::', $property);
        return array_get($this->getJsonContents($theme), $key, $default);
    }