fopen error messages
This commit is contained in:
parent
1834f24c9f
commit
ef0ecf243a
1 changed files with 5 additions and 0 deletions
|
@ -112,6 +112,9 @@ HELP;
|
|||
$filename = $this->getArgument(1);
|
||||
$blocklist = $config->get('system', 'blocklist', []);
|
||||
$fp = fopen($filename, 'w');
|
||||
if (!$fp) {
|
||||
throw new Exception(sprintf('The file "%s" could not be created.', $filename));
|
||||
}
|
||||
foreach ($blocklist as $domain) {
|
||||
fputcsv($fp, $domain);
|
||||
}
|
||||
|
@ -156,6 +159,8 @@ HELP;
|
|||
return 1;
|
||||
}
|
||||
|
||||
} else {
|
||||
throw new Exception(sprintf('The file "%s" could not be opened for importing', $filename));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue