delete invoices (#1652)

* include all meta fields as template variables
* support invoice preview via command
* support deletion of generated invoices
This commit is contained in:
Kevin Papst
2020-04-23 12:19:07 +02:00
committed by GitHub
parent cfe0724620
commit 711139ad4c
20 changed files with 206 additions and 36 deletions

View File

@@ -58,4 +58,9 @@ final class FileHelper
{
$this->filesystem->dumpFile($filename, $data);
}
public function removeFile(string $filename)
{
$this->filesystem->remove($filename);
}
}