Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Upload/AbstractUploadHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public function getProgress($id)

/**
* @param string $id
* @return array|boolean
* @return array|bool
*/
abstract protected function getUploadProgress($id);

Expand Down
4 changes: 2 additions & 2 deletions src/Upload/ApcProgress.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ApcProgress extends AbstractUploadHandler
{
/**
* @param string $id
* @return array|boolean
* @return array|bool
* @throws Exception\PhpEnvironmentException
*/
protected function getUploadProgress($id)
Expand Down Expand Up @@ -53,7 +53,7 @@ protected function getUploadProgress($id)
/**
* Checks for the APC extension
*
* @return boolean
* @return bool
*/
public function isApcAvailable()
{
Expand Down
4 changes: 2 additions & 2 deletions src/Upload/SessionProgress.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class SessionProgress extends AbstractUploadHandler
{
/**
* @param string $id
* @return array|boolean
* @return array|bool
* @throws Exception\PhpEnvironmentException
*/
protected function getUploadProgress($id)
Expand Down Expand Up @@ -62,7 +62,7 @@ protected function getUploadProgress($id)
/**
* Checks if Session Upload Progress is available
*
* @return boolean
* @return bool
*/
public function isSessionUploadProgressAvailable()
{
Expand Down
4 changes: 2 additions & 2 deletions src/Upload/UploadProgress.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class UploadProgress extends AbstractUploadHandler
{
/**
* @param string $id
* @return array|boolean
* @return array|bool
* @throws Exception\PhpEnvironmentException
*/
protected function getUploadProgress($id)
Expand Down Expand Up @@ -57,7 +57,7 @@ protected function getUploadProgress($id)
/**
* Checks for the UploadProgress extension
*
* @return boolean
* @return bool
*/
public function isUploadProgressAvailable()
{
Expand Down

0 comments on commit 7886448

Please # to comment.