t1gor/Robots.txt-Parser-Class

View on GitHub
source/Parser/DirectiveProcessors/AllowProcessor.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);

namespace t1gor\RobotsTxtParser\Parser\DirectiveProcessors;

use t1gor\RobotsTxtParser\Directive;

class AllowProcessor extends AbstractAllowanceProcessor implements DirectiveProcessorInterface {

    public function getDirectiveName(): string {
        return Directive::ALLOW;
    }
}