Caffeinated\Themes\Themes::setJsonContents PHP Method

setJsonContents() public method

Set theme manifest JSON content property value.
public setJsonContents ( string $theme, array $content ) : integer
$theme string
$content array
return integer
    public function setJsonContents($theme, array $content)
    {
        $content = json_encode($content, JSON_PRETTY_PRINT);
        return $this->files->put($this->getJsonPath($theme), $content);
    }