Pipe\BundledAsset::getBody PHP Метод

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

public getBody ( )
    function getBody()
    {
        if (null === $this->body) {
            $body = parent::getBody();
            $bundleProcessors = $this->environment->bundleProcessors->all($this->getContentType());
            $context = new Context($this->environment);
            $this->body = $context->evaluate($this->path, array("processors" => $bundleProcessors, "data" => $body));
        }
        return $this->body;
    }
BundledAsset