Declare strict types.

This commit is contained in:
James Cole
2016-05-20 08:57:45 +02:00
parent 782a6f289c
commit 66d7fd7d4c
146 changed files with 394 additions and 83 deletions

View File

@@ -157,7 +157,7 @@ class Processor
foreach ($this->getFiles() as $entry) {
// is part of this job?
$zipFileName = str_replace($this->job->key . '-', '', $entry);
$result = $zip->addFromString($zipFileName, $disk->get($entry));
$zip->addFromString($zipFileName, $disk->get($entry));
}
$zip->close();