for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace nstdio\svg\filter;
use nstdio\svg\container\ContainerInterface;
use nstdio\svg\traits\ElementTrait;
/**
* Class Merge
*
* @package nstdio\svg\filter
* @author Edgar Asatryan <[email protected]>
*/
class Merge extends BaseFilter implements ContainerInterface
{
use ElementTrait;
* @inheritdoc
public function getName()
return "feMerge";
}