Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
maztch committed May 28, 2019
1 parent 9eb15dc commit 4a159fb
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 14 deletions.
6 changes: 4 additions & 2 deletions src/CompressImageTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
6 changes: 4 additions & 2 deletions src/ConvertImageTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
6 changes: 4 additions & 2 deletions src/CropImageTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
6 changes: 4 additions & 2 deletions src/ImageTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
6 changes: 4 additions & 2 deletions src/RepairImageTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
6 changes: 4 additions & 2 deletions src/ResizeImageTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
6 changes: 4 additions & 2 deletions src/RotateImageTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 4a159fb

Please sign in to comment.