mirror of
https://github.com/processwire/processwire.git
synced 2025-08-20 21:42:23 +02:00
added to phpdocs
This commit is contained in:
@@ -11,7 +11,7 @@ class ImageSizerEngineIMagick extends ImageSizerEngine {
|
|||||||
public static function getModuleInfo() {
|
public static function getModuleInfo() {
|
||||||
return array(
|
return array(
|
||||||
'title' => 'IMagick Image Sizer',
|
'title' => 'IMagick Image Sizer',
|
||||||
'version' => 2,
|
'version' => 3,
|
||||||
'summary' => "Upgrades image manipulations to use PHP's ImageMagick library when possible.",
|
'summary' => "Upgrades image manipulations to use PHP's ImageMagick library when possible.",
|
||||||
'author' => 'Horst Nogajski',
|
'author' => 'Horst Nogajski',
|
||||||
'autoload' => false,
|
'autoload' => false,
|
||||||
@@ -20,10 +20,19 @@ class ImageSizerEngineIMagick extends ImageSizerEngine {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* The (main) IMagick bitimage handler for regular image variations, (JPEG PNG)
|
||||||
|
*
|
||||||
* @var \IMagick|null
|
* @var \IMagick|null
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
protected $im = null;
|
protected $im = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The (optionally) IMagick bitimage handler for additional WebP copies
|
||||||
|
*
|
||||||
|
* @var \IMagick|null
|
||||||
|
*
|
||||||
|
*/
|
||||||
protected $imWebp = null;
|
protected $imWebp = null;
|
||||||
|
|
||||||
// @todo the following need phpdoc
|
// @todo the following need phpdoc
|
||||||
|
Reference in New Issue
Block a user