t1gor/Robots.txt-Parser-Class

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

Summary

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

namespace t1gor\RobotsTxtParser\Parser\DirectiveProcessors;

use t1gor\RobotsTxtParser\Directive;

class DisallowProcessor extends AbstractAllowanceProcessor implements DirectiveProcessorInterface {

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