1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-20 05:21:29 +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() {
return array(
'title' => 'IMagick Image Sizer',
'version' => 2,
'version' => 3,
'summary' => "Upgrades image manipulations to use PHP's ImageMagick library when possible.",
'author' => 'Horst Nogajski',
'autoload' => false,
@@ -20,10 +20,19 @@ class ImageSizerEngineIMagick extends ImageSizerEngine {
}
/**
* The (main) IMagick bitimage handler for regular image variations, (JPEG PNG)
*
* @var \IMagick|null
*
*/
protected $im = null;
/**
* The (optionally) IMagick bitimage handler for additional WebP copies
*
* @var \IMagick|null
*
*/
protected $imWebp = null;
// @todo the following need phpdoc