StyleCI recommendations

pull/226/head^2
El RIDO 7 years ago
parent a5d5f6066a
commit 502e96c129
No known key found for this signature in database
GPG Key ID: 0F5C940A6BD81F92

@ -12,9 +12,9 @@
namespace PrivateBin;
use PrivateBin\Persistence\DataStore;
use Exception;
use PDO;
use PrivateBin\Persistence\DataStore;
/**
* Configuration

@ -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);
}

Loading…
Cancel
Save