for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YAWIK
*
* @filesource
* @license MIT
* @copyright https://yawik.org/COPYRIGHT.php
*/
/** */
namespace Core\Options;
use Laminas\Stdlib\AbstractOptions;
* Options for the Imagine library.
* @author Mathias Gelhausen <[email protected]>
* @since 0.29
class ImagineOptions extends AbstractOptions
{
/**#@+
* Image library.
* @var string
const LIB_GD = 'Gd';
const LIB_IMAGICK = 'Imagick';
const LIB_GMAGICK = 'Gmagick';
/**#@-*/
* The image library to be used.
protected $imageLib = self::LIB_GD;
* @param string $imageLib
* @return self
public function setImageLib($imageLib)
$this->imageLib = $imageLib;
return $this;
}
* @return string
public function getImageLib()
return $this->imageLib;