Calotype\SEO\Generators\RobotsGenerator::addRuleLine PHP Method

addRuleLine() protected method

Add a rule to the robots.txt.
protected addRuleLine ( string | array $directories, string $rule )
$directories string | array
$rule string
    protected function addRuleLine($directories, $rule)
    {
        foreach ((array) $directories as $directory) {
            $this->addLine("{$rule}: {$directory}");
        }
    }