Skip to content

Commit

Permalink
return type
Browse files Browse the repository at this point in the history
  • Loading branch information
recca0120 committed May 1, 2023
1 parent 186a7d1 commit d2445dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Api.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ protected function createChunkFile(string $name, string $uuid = null, string $mi
return new ChunkFile($this->files, $name, $this->chunkPath(), $this->storagePath(), $uuid, $mimeType);
}

abstract protected function isChunked(string $name);
abstract protected function isChunked(string $name): bool;

abstract protected function isCompleted(string $name);
abstract protected function isCompleted(string $name): bool;

/**
* @return UploadedFile|\Symfony\Component\HttpFoundation\File\UploadedFile
Expand Down

0 comments on commit d2445dd

Please sign in to comment.