Skip to content

Commit 9a3a22e

Browse files
Improve doc strings
1 parent ff8bd3d commit 9a3a22e

5 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/Asset/BaseMediaAsset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function setTransformation(CommonTransformation $transformation)
101101
abstract public function getTransformation();
102102

103103
/**
104-
* Adds (appends) a transformation.
104+
* 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).
105105
*
106106
* Appended transformation is nested.
107107
*

src/Asset/Descriptor/AssetTransformation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public function importJson($json)
157157
}
158158

159159
/**
160-
* Adds (appends) a transformation.
160+
* 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).
161161
*
162162
* Appended transformation is nested.
163163
*

src/Tag/BaseImageTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public function jsonSerialize()
174174
}
175175

176176
/**
177-
* Adds (appends) a transformation.
177+
* 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).
178178
*
179179
* Appended transformation is nested.
180180
*

src/Tag/ImageTag.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
/**
1616
* Generates an HTML `<img>` tag with the `src` attribute set to the transformation URL, optional `srcset` and other
1717
* specified attributes.
18+
*
19+
* For more information, see the [PHP SDK guide](https://cloudinary.com/documentation/php_image_manipulation#deliver_and_transform_images).
1820
*
1921
* @api
2022
*/

src/Tag/VideoTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ public function jsonSerialize()
343343
}
344344

345345
/**
346-
* Adds (appends) a transformation.
346+
* 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).
347347
*
348348
* Appended transformation is nested.
349349
*

0 commit comments

Comments
 (0)