for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace nstdio\svg\filter;
use nstdio\svg\ElementInterface;
/**
* Class Func
*
* @property string type
* @package nstdio\svg\filter
* @author Edgar Asatryan <[email protected]>
*/
abstract class Func extends BaseFilter
{
public function __construct(ElementInterface $parent, $type)
parent::__construct($parent);
$this->type = $type;
}