writeBundleFile() protected method

Write a bundle file to disk.
protected writeBundleFile ( string $bundlePath, string $data ) : integer
$bundlePath string
$data string
return integer
Example #1
0
 protected function writeBundleFile($bundlePath, $data)
 {
     if ($this->hasFsDirectorySupport()) {
         throw new \UnexpectedValueException("This filesystem doesn't support directories.");
     }
     return parent::writeBundleFile($bundlePath, $data);
 }