Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds (appends) a transformation. #413

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Asset/BaseMediaAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public function setTransformation(CommonTransformation $transformation)
abstract public function getTransformation();

/**
* Adds (appends) a transformation.
* Adds (appends) a transformation in URL syntax to the current chain. A transformation is a set of instructions for adjusting images or videos—such as resizing, cropping, applying filters, adding overlays, or optimizing formats. For a detailed listing of all transformations, see the [Transformation Reference](https://cloudinary.com/documentation/transformation_reference) or the [PHP reference](https://cloudinary.com/documentation/sdks/php/php-transformation-builder/index.html).
*
* Appended transformation is nested.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Asset/Descriptor/AssetTransformation.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public function importJson($json)
}

/**
* Adds (appends) a transformation.
* Adds (appends) a transformation in URL syntax to the current chain. A transformation is a set of instructions for adjusting images or videos—such as resizing, cropping, applying filters, adding overlays, or optimizing formats. For a detailed listing of all transformations, see the [Transformation Reference](https://cloudinary.com/documentation/transformation_reference) or the [PHP reference](https://cloudinary.com/documentation/sdks/php/php-transformation-builder/index.html).
*
* Appended transformation is nested.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Tag/BaseImageTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public function jsonSerialize()
}

/**
* Adds (appends) a transformation.
* Adds (appends) a transformation in URL syntax to the current chain. A transformation is a set of instructions for adjusting images or videos—such as resizing, cropping, applying filters, adding overlays, or optimizing formats. For a detailed listing of all transformations, see the [Transformation Reference](https://cloudinary.com/documentation/transformation_reference) or the [PHP reference](https://cloudinary.com/documentation/sdks/php/php-transformation-builder/index.html).
*
* Appended transformation is nested.
*
Expand Down
2 changes: 2 additions & 0 deletions src/Tag/ImageTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
/**
* Generates an HTML `<img>` tag with the `src` attribute set to the transformation URL, optional `srcset` and other
* specified attributes.
*
* For more information, see the [PHP SDK guide](https://cloudinary.com/documentation/php_image_manipulation#deliver_and_transform_images).
*
* @api
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Tag/VideoTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ public function jsonSerialize()
}

/**
* Adds (appends) a transformation.
* Adds (appends) a transformation in URL syntax to the current chain. A transformation is a set of instructions for adjusting images or videos—such as resizing, cropping, applying filters, adding overlays, or optimizing formats. For a detailed listing of all transformations, see the [Transformation Reference](https://cloudinary.com/documentation/transformation_reference) or the [PHP reference](https://cloudinary.com/documentation/sdks/php/php-transformation-builder/index.html).
*
* Appended transformation is nested.
*
Expand Down
Loading