13 lines
218 B
PHP
Executable File
13 lines
218 B
PHP
Executable File
<?php
|
|
|
|
namespace Mautic\PluginBundle\Bundle;
|
|
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|
|
|
/**
|
|
* Base Bundle class which should be extended by addon bundles.
|
|
*/
|
|
abstract class PluginBundleBase extends Bundle
|
|
{
|
|
}
|