__construct() публичный Метод

public __construct ( $originalFile = null, $width = null, $height = null )
Пример #1
0
 /**
  * @param null $originalFile
  * @param null $width
  * @param null $height
  * @param bool $throwException
  */
 public function __construct($originalFile = null, $width = null, $height = null, $throwException = null, $fallbackImage = null)
 {
     parent::__construct($originalFile, $width, $height);
     $this->useFallback(!$throwException);
     $this->setFallback($fallbackImage);
 }