style(legacy): fix code format with php-cs-fixer (#1674)

This commit is contained in:
Jonas L 2022-03-14 11:15:04 +01:00 committed by GitHub
parent e1dc69af9e
commit 69d8eae845
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
111 changed files with 1163 additions and 1163 deletions

View file

@ -44,7 +44,7 @@ class FileDataHelper
$data['year'] = intval($data['year']);
}
if (array_key_exists('bpm', $data)) {
//Some BPM tags are silly and include the word "BPM". Let's strip that...
// Some BPM tags are silly and include the word "BPM". Let's strip that...
$data['bpm'] = str_ireplace('BPM', '', $data['bpm']);
// This will convert floats to ints too.
$data['bpm'] = intval($data['bpm']);
@ -143,7 +143,7 @@ class FileDataHelper
$path_parts = pathinfo($filename);
$file = $importDir . 'artwork/' . $path_parts['filename'];
//Save Data URI
// Save Data URI
if (file_put_contents($file, $base64)) {
$get_img = $DbPath . 'artwork/' . $path_parts['filename'];
} else {
@ -204,7 +204,7 @@ class FileDataHelper
$path_parts = pathinfo($fullpath);
$file = $path_parts['filename'];
//Save Data URI
// Save Data URI
if (file_put_contents($audioPath . '/' . $file, $base64)) {
$get_img = $dbPath . '/' . $file;
} else {
@ -261,7 +261,7 @@ class FileDataHelper
$path_parts = pathinfo($fullpath);
$file = $path_parts['filename'];
//Save Data URI
// Save Data URI
if (file_put_contents($audioPath . '/' . $file, $base64)) {
$get_img = $dbPath . '/' . $file;
} else {
@ -429,7 +429,7 @@ class FileDataHelper
$Image = 'data:image/jpeg;charset=utf-8;base64,' . base64_encode($file);
$base64 = @$Image;
//Save Data URI
// Save Data URI
if (file_put_contents($conv_filename, $base64)) {
} else {
Logging::error('Could not save Data URI');