StyleCI recommendations

This commit is contained in:
El RIDO
2017-10-08 19:23:33 +02:00
parent a5d5f6066a
commit 502e96c129
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ class DataStore extends AbstractPersistence
// don't overwrite already converted file
if (!is_readable($destFile)) {
$handle = fopen($srcFile, 'r', false, stream_context_create());
file_put_contents($destFile, $prefix . DataStore::PROTECTION_LINE . PHP_EOL);
file_put_contents($destFile, $prefix . self::PROTECTION_LINE . PHP_EOL);
file_put_contents($destFile, $handle, FILE_APPEND);
fclose($handle);
}