@brief is removed completely

This commit is contained in:
Michael 2020-01-19 06:05:23 +00:00
parent fd1f1999f0
commit 0a4119adaf
170 changed files with 901 additions and 962 deletions

View file

@ -1,7 +1,7 @@
<?php
/**
* @file src/Object/Image.php
* @brief This file contains the Image class for image processing
* This file contains the Image class for image processing
*/
namespace Friendica\Object;
@ -32,7 +32,7 @@ class Image
private $types;
/**
* @brief Constructor
* Constructor
* @param string $data
* @param boolean $type optional, default null
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
@ -57,7 +57,7 @@ class Image
}
/**
* @brief Destructor
* Destructor
* @return void
*/
public function __destruct()
@ -501,7 +501,7 @@ class Image
}
/**
* @brief Scale image to target dimensions
* Scale image to target dimensions
*
* @param int $dest_width
* @param int $dest_height
@ -614,7 +614,7 @@ class Image
}
/**
* @brief Magic method allowing string casting of an Image object
* Magic method allowing string casting of an Image object
*
* Ex: $data = $Image->asString();
* can be replaced by
@ -671,7 +671,7 @@ class Image
}
/**
* @brief supported mimetypes and corresponding file extensions
* supported mimetypes and corresponding file extensions
* @return array
* @deprecated in version 2019.12 please use Util\Images::supportedTypes() instead.
*/
@ -681,7 +681,7 @@ class Image
}
/**
* @brief Maps Mime types to Imagick formats
* Maps Mime types to Imagick formats
* @return array With with image formats (mime type as key)
* @deprecated in version 2019.12 please use Util\Images::getFormatsMap() instead.
*/