Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
setStyleByArray($style);
}
/**
* Get type.
*
* @return string
*/
public function getType()
{
return $this->type;
}
/**
* Set pattern.
*
* @param string $value
*
* @return self
*/
public function setType($value = null)
{
$enum = [self::EXTRUSION_PARALLEL, self::EXTRUSION_PERSPECTIVE];
$this->type = $this->setEnumVal($value, $enum, null);
return $this;
}
/**
* Get color.
*
* @return string
*/
public function getColor()
{
return $this->color;
}
/**
* Set color.
*
* @param string $value
*
* @return self
*/
public function setColor($value = null)
{
$this->color = $value;
return $this;
}
}