Thanks to visit codestin.com
Credit goes to github.com

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

File tree

src/Upload/AbstractUploadHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public function getProgress($id)
159159

160160
/**
161161
* @param string $id
162-
* @return array|boolean
162+
* @return array|bool
163163
*/
164164
abstract protected function getUploadProgress($id);
165165

src/Upload/ApcProgress.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ApcProgress extends AbstractUploadHandler
2020
{
2121
/**
2222
* @param string $id
23-
* @return array|boolean
23+
* @return array|bool
2424
* @throws Exception\PhpEnvironmentException
2525
*/
2626
protected function getUploadProgress($id)
@@ -53,7 +53,7 @@ protected function getUploadProgress($id)
5353
/**
5454
* Checks for the APC extension
5555
*
56-
* @return boolean
56+
* @return bool
5757
*/
5858
public function isApcAvailable()
5959
{

src/Upload/SessionProgress.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class SessionProgress extends AbstractUploadHandler
2020
{
2121
/**
2222
* @param string $id
23-
* @return array|boolean
23+
* @return array|bool
2424
* @throws Exception\PhpEnvironmentException
2525
*/
2626
protected function getUploadProgress($id)
@@ -62,7 +62,7 @@ protected function getUploadProgress($id)
6262
/**
6363
* Checks if Session Upload Progress is available
6464
*
65-
* @return boolean
65+
* @return bool
6666
*/
6767
public function isSessionUploadProgressAvailable()
6868
{

src/Upload/UploadProgress.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class UploadProgress extends AbstractUploadHandler
2020
{
2121
/**
2222
* @param string $id
23-
* @return array|boolean
23+
* @return array|bool
2424
* @throws Exception\PhpEnvironmentException
2525
*/
2626
protected function getUploadProgress($id)
@@ -57,7 +57,7 @@ protected function getUploadProgress($id)
5757
/**
5858
* Checks for the UploadProgress extension
5959
*
60-
* @return boolean
60+
* @return bool
6161
*/
6262
public function isUploadProgressAvailable()
6363
{

0 commit comments

Comments
 (0)