for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace nystudio107\instantanalytics\variables;
use nystudio107\instantanalytics\helpers\Manifest as ManifestHelper;
class ManifestVariable
{
// Public Methods
// =========================================================================
/**
* Get the passed in JS modules from the manifest, and register them in the current Craft view
*
* @param array $modules
* @throws \yii\base\InvalidConfigException
* @throws \yii\web\NotFoundHttpException
*/
public function registerJsModules(array $modules)
ManifestHelper::registerJsModules($modules);
}
* Get the passed in CS modules from the manifest, and register them in the current Craft view
public function registerCssModules(array $modules)
ManifestHelper::registerCssModules($modules);