<?php
/**
* This source file is available under GNU General Public License version 3 (GPLv3)
*
* Full copyright and license information is available in LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Asioso GmbH (https://www.asioso.com)
*
*/
namespace MockBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
class MockBundle extends AbstractPimcoreBundle
{
public function getNiceName()
{
return 'Asioso - Mock Bundle';
}
public function getJsPaths()
{
return [
'/bundles/mock/js/pimcore/startup.js'
];
}
public function getVersion()
{
return 'v0.1';
}
}