ProxyFactory always checks if directory is writable first
This commit is contained in:
parent
99c1383ef5
commit
48bf5022e4
1 changed files with 6 additions and 1 deletions
|
@ -153,7 +153,12 @@ class ProxyFactory
|
||||||
$file = str_replace($placeholders, $replacements, $file);
|
$file = str_replace($placeholders, $replacements, $file);
|
||||||
|
|
||||||
$parentDirectory = dirname($fileName);
|
$parentDirectory = dirname($fileName);
|
||||||
if (! is_dir($parentDirectory) && ! mkdir($parentDirectory, 0775, true)) {
|
|
||||||
|
if (! is_dir($parentDirectory)) {
|
||||||
|
mkdir($parentDirectory, 0775, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! is_writable($parentDirectory)) {
|
||||||
throw ProxyException::proxyDirectoryNotWritable();
|
throw ProxyException::proxyDirectoryNotWritable();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue