diff --git a/src/CompressImageTask.php b/src/CompressImageTask.php index 85a92cb..7591a56 100644 --- a/src/CompressImageTask.php +++ b/src/CompressImageTask.php @@ -17,8 +17,10 @@ class CompressImageTask extends ImageTask /** * CompressTask constructor. - * @param string $publicKey - * @param string $secretKey + * + * @param null|string $publicKey Your public key + * @param null|string $secretKey Your secret key + * @param bool $makeStart Set to false for chained tasks, because we don't need the start */ function __construct($publicKey, $secretKey, $makeStart = true) { diff --git a/src/ConvertImageTask.php b/src/ConvertImageTask.php index 679e905..f8fe005 100644 --- a/src/ConvertImageTask.php +++ b/src/ConvertImageTask.php @@ -28,8 +28,10 @@ class ConvertImageTask extends ImageTask /** * ConvertimageTask constructor. - * @param string $publicKey - * @param string $secretKey + * + * @param null|string $publicKey Your public key + * @param null|string $secretKey Your secret key + * @param bool $makeStart Set to false for chained tasks, because we don't need the start */ function __construct($publicKey, $secretKey, $makeStart = true) { diff --git a/src/CropImageTask.php b/src/CropImageTask.php index 4d3662c..df9834e 100644 --- a/src/CropImageTask.php +++ b/src/CropImageTask.php @@ -31,8 +31,10 @@ class CropImageTask extends ImageTask /** * ClassCropimageTask constructor. - * @param string $publicKey - * @param string $secretKey + * + * @param null|string $publicKey Your public key + * @param null|string $secretKey Your secret key + * @param bool $makeStart Set to false for chained tasks, because we don't need the start */ function __construct($publicKey, $secretKey, $makeStart = true) { diff --git a/src/ImageTask.php b/src/ImageTask.php index 09a4d7a..cbc4fc8 100644 --- a/src/ImageTask.php +++ b/src/ImageTask.php @@ -53,8 +53,10 @@ class ImageTask extends Iloveimg /** * Task constructor. - * @param null $publicKey - * @param null $secretKey + * + * @param null|string $publicKey Your public key + * @param null|string $secretKey Your secret key + * @param bool $makeStart Set to false for chained tasks, because we don't need the start */ function __construct($publicKey, $secretKey, $makeStart = false) { diff --git a/src/RepairImageTask.php b/src/RepairImageTask.php index 878faf3..82f1f06 100644 --- a/src/RepairImageTask.php +++ b/src/RepairImageTask.php @@ -11,8 +11,10 @@ class RepairImageTask extends ImageTask /** * RepairTask constructor. - * @param string $publicKey - * @param string $secretKey + * + * @param null|string $publicKey Your public key + * @param null|string $secretKey Your secret key + * @param bool $makeStart Set to false for chained tasks, because we don't need the start */ function __construct($publicKey, $secretKey, $makeStart = true) { diff --git a/src/ResizeImageTask.php b/src/ResizeImageTask.php index 0a10474..91de95e 100644 --- a/src/ResizeImageTask.php +++ b/src/ResizeImageTask.php @@ -45,8 +45,10 @@ class ResizeImageTask extends ImageTask /** * CompressTask constructor. - * @param string $publicKey - * @param string $secretKey + * + * @param null|string $publicKey Your public key + * @param null|string $secretKey Your secret key + * @param bool $makeStart Set to false for chained tasks, because we don't need the start */ function __construct($publicKey, $secretKey, $makeStart = true) { diff --git a/src/RotateImageTask.php b/src/RotateImageTask.php index f57a398..a1a377a 100644 --- a/src/RotateImageTask.php +++ b/src/RotateImageTask.php @@ -13,8 +13,10 @@ class RotateImageTask extends ImageTask /** * RotateTask constructor. - * @param string $publicKey - * @param string $secretKey + * + * @param null|string $publicKey Your public key + * @param null|string $secretKey Your secret key + * @param bool $makeStart Set to false for chained tasks, because we don't need the start */ function __construct($publicKey, $secretKey, $makeStart = true) {