Skip to content

Commit

Permalink
PHP CS Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FraGoTe committed Mar 1, 2023
1 parent 786b5a6 commit 48a2652
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/text2speech/Text2SpeechPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public function install()
public function uninstall()
{
if (file_exists(self::PATH_TO_SAVE_FILES)) {
array_map('unlink', glob(self::PATH_TO_SAVE_FILES. '/*.*'));
array_map('unlink', glob(self::PATH_TO_SAVE_FILES.'/*.*'));
rmdir(self::PATH_TO_SAVE_FILES);
}
}
Expand Down
Binary file removed plugin/text2speech/src/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion plugin/text2speech/src/mozillatts/MozillaTTS.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ private function request(string $data): string
'&text='.str_replace('%0A', '+', urlencode($data)), [
'headers' => [
'Cache-Control' => 'no-cache',
'Content-Type' => 'audio/wav'
'Content-Type' => 'audio/wav',
],
'sink' => $resource,
]);
Expand Down

0 comments on commit 48a2652

Please sign in to comment.