@@ -205,7 +205,7 @@ public function imageCreateJpegfromExif($filename)
205
205
* @param string $image_type
206
206
* @param integer $quality
207
207
* @param integer $permissions
208
- * @return \ static
208
+ * @return static
209
209
*/
210
210
public function save ($ filename , $ image_type = null , $ quality = null , $ permissions = null )
211
211
{
@@ -364,7 +364,7 @@ public function output($image_type = null, $quality = null)
364
364
*
365
365
* @param integer $max_short
366
366
* @param boolean $allow_enlarge
367
- * @return \ static
367
+ * @return static
368
368
*/
369
369
public function resizeToShortSide ($ max_short , $ allow_enlarge = false )
370
370
{
@@ -388,7 +388,7 @@ public function resizeToShortSide($max_short, $allow_enlarge = false)
388
388
*
389
389
* @param integer $max_long
390
390
* @param boolean $allow_enlarge
391
- * @return \ static
391
+ * @return static
392
392
*/
393
393
public function resizeToLongSide ($ max_long , $ allow_enlarge = false )
394
394
{
@@ -412,7 +412,7 @@ public function resizeToLongSide($max_long, $allow_enlarge = false)
412
412
*
413
413
* @param integer $height
414
414
* @param boolean $allow_enlarge
415
- * @return \ static
415
+ * @return static
416
416
*/
417
417
public function resizeToHeight ($ height , $ allow_enlarge = false )
418
418
{
@@ -429,7 +429,7 @@ public function resizeToHeight($height, $allow_enlarge = false)
429
429
*
430
430
* @param integer $width
431
431
* @param boolean $allow_enlarge
432
- * @return \ static
432
+ * @return static
433
433
*/
434
434
public function resizeToWidth ($ width , $ allow_enlarge = false )
435
435
{
@@ -447,7 +447,7 @@ public function resizeToWidth($width, $allow_enlarge = false)
447
447
* @param integer $max_width
448
448
* @param integer $max_height
449
449
* @param boolean $allow_enlarge
450
- * @return \ static
450
+ * @return static
451
451
*/
452
452
public function resizeToBestFit ($ max_width , $ max_height , $ allow_enlarge = false )
453
453
{
@@ -471,7 +471,7 @@ public function resizeToBestFit($max_width, $max_height, $allow_enlarge = false)
471
471
* Resizes image according to given scale (proportionally)
472
472
*
473
473
* @param integer|float $scale
474
- * @return \ static
474
+ * @return static
475
475
*/
476
476
public function scale ($ scale )
477
477
{
@@ -489,7 +489,7 @@ public function scale($scale)
489
489
* @param integer $width
490
490
* @param integer $height
491
491
* @param boolean $allow_enlarge
492
- * @return \ static
492
+ * @return static
493
493
*/
494
494
public function resize ($ width , $ height , $ allow_enlarge = false )
495
495
{
@@ -523,7 +523,7 @@ public function resize($width, $height, $allow_enlarge = false)
523
523
* @param integer $height
524
524
* @param boolean $allow_enlarge
525
525
* @param integer $position
526
- * @return \ static
526
+ * @return static
527
527
*/
528
528
public function crop ($ width , $ height , $ allow_enlarge = false , $ position = self ::CROPCENTER )
529
529
{
@@ -574,7 +574,7 @@ public function crop($width, $height, $allow_enlarge = false, $position = self::
574
574
* @param integer $height
575
575
* @param integer $x
576
576
* @param integer $y
577
- * @return \ static
577
+ * @return static
578
578
*/
579
579
public function freecrop ($ width , $ height , $ x = false , $ y = false )
580
580
{
0 commit comments