Skip to content

Commit

Permalink
removed unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
daVitekPL committed Apr 15, 2024
1 parent baa3c33 commit 719c604
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/Helpers/Helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace EscolaLms\HeadlessH5P\Helpers;

use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Storage;

class Helpers
Expand Down
1 change: 0 additions & 1 deletion src/Http/Controllers/ContentApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
use EscolaLms\HeadlessH5P\Services\Contracts\HeadlessH5PServiceContract;
use Exception;
use Illuminate\Http\JsonResponse;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Storage;
use Symfony\Component\HttpFoundation\BinaryFileResponse;
use Symfony\Component\HttpFoundation\StreamedResponse;
Expand Down
2 changes: 1 addition & 1 deletion src/Repositories/H5PFileStorageRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ private static function libraryToFolderName($library) {
/**
* @throws Exception
*/
public function copyFiles($source, $destination) {
private function copyFiles($source, $destination) {
if (!$this->isDirReady($destination)) {
throw new Exception('unabletocopy');
}
Expand Down

0 comments on commit 719c604

Please sign in to comment.