Skip to content

Commit

Permalink
Adds (appends) a transformation.
Browse files Browse the repository at this point in the history
  • Loading branch information
sharon-yelenik committed Nov 28, 2024
1 parent ff8bd3d commit ff197d2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
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_integration#landingpage).
*
* @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

0 comments on commit ff197d2

Please sign in to comment.