MiniAsset\Filter\FilterCollection::output PHP Метод

output() публичный Метод

Apply all the output filters in sequence to the file and content.
public output ( $target, string $content ) : string
$content string The content of the file.
Результат string The content with all output filters applied.
    public function output($target, $content)
    {
        foreach ($this->filters as $filter) {
            $content = $filter->output($target, $content);
        }
        return $content;
    }