/** * Serve combined CSS assets * * @param string $themeType Either `desktop` or `mobile`. * @param string $filename The basename of the file to serve * @since 2.1 */ public function css($themeType, $filename) { $assetModel = new AssetModel(); $assetModel->serveCss($themeType, $filename); }