M1\Vars\Loader\AbstractLoader::supports PHP Method

supports() public method

Checks whether the loader supports the file extension
public supports ( ) : boolean
return boolean Does the loader support the file
    public function supports()
    {
        $extension = pathinfo($this->entity, PATHINFO_EXTENSION);
        return in_array($extension, static::$supported);
    }