for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) Flipbox Digital Limited
* @license https://github.com/flipbox/spark/blob/master/LICENSE
* @link https://github.com/flipbox/spark
*/
namespace flipbox\spark\web\assets\actions;
use craft\web\AssetBundle;
use craft\web\assets\cp\CpAsset;
* @author Flipbox Factory <[email protected]>
* @since 1.0.0
class Actions extends AssetBundle
{
* @inheritdoc
public $sourcePath = __DIR__ . '/dist';
public $depends = [
CpAsset::class,
];
public function init()
$this->js = [
'Actions'.$this->dotJs()
parent::init();
}