Implements Drupal\Component\PhpStorage\PhpStorageInterface::save().
Overrides PhpStorageInterface::save
public function save($name, $code) {
$path = $this
->getFullPath($name);
mkdir(dirname($path), 0700, TRUE);
return (bool) file_put_contents($path, $code);
}