ideasonpurpose/wp-svg-lib

View on GitHub
src/Deprecated/HasSVG.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace IdeasOnPurpose\WP\Deprecated;

trait HasSVG
{
    /**
     * Check if SVG exists
     * @deprecated Renamed to `exists`
     */
    public function hasSVG($name)
    {
        return $this->exists($name);
    }

    abstract public function exists($name);
}