Skip to content

Commit 2a13069

Browse files
FraGoTeAngelFQC
authored andcommitted
PHP CS Fix
1 parent d64aae0 commit 2a13069

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

plugin/text2speech/Text2SpeechPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function install()
101101
public function uninstall()
102102
{
103103
if (file_exists(self::PATH_TO_SAVE_FILES)) {
104-
array_map('unlink', glob(self::PATH_TO_SAVE_FILES. '/*.*'));
104+
array_map('unlink', glob(self::PATH_TO_SAVE_FILES.'/*.*'));
105105
rmdir(self::PATH_TO_SAVE_FILES);
106106
}
107107
}

plugin/text2speech/src/.DS_Store

-8 KB
Binary file not shown.

plugin/text2speech/src/mozillatts/MozillaTTS.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ private function request(string $data): string
3131
'&text='.str_replace('%0A', '+', urlencode($data)), [
3232
'headers' => [
3333
'Cache-Control' => 'no-cache',
34-
'Content-Type' => 'audio/wav'
34+
'Content-Type' => 'audio/wav',
3535
],
3636
'sink' => $resource,
3737
]);

0 commit comments

Comments
 (0)