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://flipboxfactory.com/software/organization/license
* @link https://www.flipboxfactory.com/software/organization/
*/
namespace flipbox\organization\web\assets\element;
use craft\web\AssetBundle;
use craft\web\assets\cp\CpAsset;
* @author Flipbox Factory <[email protected]>
* @since 1.0.0
class Element extends AssetBundle
{
* @inheritdoc
public function init()
$this->js = [
'Element' . $this->dotJs()
];
$this->css = [
'Element.css'
parent::init();
}
public $sourcePath = __DIR__ . '/dist';
public $depends = [
CpAsset::class,