File "TestAllowedAttributes.php"

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

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

use enshrined\svgSanitize\data\AttributeInterface;

class TestAllowedAttributes implements AttributeInterface
{
    /**
     * Returns an array of attributes
     *
     * @return array
     */
    public static function getAttributes()
    {
        return array(
            'testAttribute',
        );
    }
}