File "TestAllowedTags.php"

Full Path: /home/vantageo/public_html/cache/cache/cache/.wp-cli/wp-content/plugins/svg-support/vendor/enshrined/svg-sanitize/tests/Fixtures/TestAllowedTags.php
File size: 332 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace enshrined\svgSanitize\Tests\Fixtures;

use enshrined\svgSanitize\data\TagInterface;

class TestAllowedTags implements TagInterface
{
    /**
     * Returns an array of tags
     *
     * @return array
     */
    public static function getTags()
    {
        return array(
            'testTag',
        );
    }
}