-
Notifications
You must be signed in to change notification settings - Fork 82
Open
Description
Hi, the umask is used to set right file permissions of cached files in the FilePathCache
| $umask = umask(0); |
class FilesystemCache extends \Assetic\Cache\FilesystemCache
{
/**
* {@inheritdoc}
*/
public function set($key, $value)
{
$umask = umask(0);
parent::set($key, $value);
umask($umask);
}
}
Metadata
Metadata
Assignees
Labels
No labels