Rocketeer\Services\Storages\ServerStorage::getContents PHP Method

getContents() protected method

Get the contents of the file.
protected getContents ( ) : array
return array
    protected function getContents()
    {
        $file = $this->getFilepath();
        $file = $this->bash->getFile($file) ?: '{}';
        $file = (array) json_decode($file, true);
        return $file;
    }