Barryvdh\Debugbar\Controllers\AssetController::css PHP 메소드

css() 공개 메소드

Return the stylesheets for the Debugbar
public css ( ) : Response
리턴 Symfony\Component\HttpFoundation\Response
    public function css()
    {
        $renderer = $this->debugbar->getJavascriptRenderer();
        $content = $renderer->dumpAssetsToString('css');
        $response = new Response($content, 200, ['Content-Type' => 'text/css']);
        return $this->cacheResponse($response);
    }