for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace dominus77\sweetalert2\assets;
use yii\web\AssetBundle;
/**
* Class ExampleAsset
* @package dominus77\sweetalert2\assets
*/
class ExampleAsset extends AssetBundle
{
* @var string
public $sourcePath;
* @var array
public $css = [];
* @inheritdoc
public function init()
$this->sourcePath = __DIR__ . '/src';
$this->css = [
'css/example.css',
'css/buttons.css'
];
}