1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-21 05:51:41 +02:00

added to phpdocs

This commit is contained in:
horst-n
2019-04-27 23:13:26 +02:00
parent e6f4fbcb40
commit d062bc4345

View File

@@ -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