2 Commits
1.0.0 ... 1.0.2

2 changed files with 6 additions and 2 deletions

View File

@@ -6,9 +6,9 @@ namespace Webfarben\DummyCopier\ContaoManager;
use Webfarben\DummyCopier\DummyCopierBundle; use Webfarben\DummyCopier\DummyCopierBundle;
use Contao\CoreBundle\ContaoCoreBundle; use Contao\CoreBundle\ContaoCoreBundle;
use Contao\ManagerPlugin\Bundle\BundleConfig; use Contao\ManagerPlugin\Bundle\BundlePluginInterface;
use Contao\ManagerPlugin\Bundle\Config\BundleConfig;
use Contao\ManagerPlugin\Bundle\Parser\ParserInterface; use Contao\ManagerPlugin\Bundle\Parser\ParserInterface;
use Contao\ManagerPlugin\Bundle\Plugin\BundlePluginInterface;
class Plugin implements BundlePluginInterface class Plugin implements BundlePluginInterface
{ {

View File

@@ -8,4 +8,8 @@ use Symfony\Component\HttpKernel\Bundle\Bundle;
class DummyCopierBundle extends Bundle class DummyCopierBundle extends Bundle
{ {
public function getPath(): string
{
return \dirname(__DIR__);
}
} }