16 lines
243 B
PHP
16 lines
243 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Eiswurm\ContaoPinboardBundle;
|
|
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|
|
|
final class ContaoPinboardBundle extends Bundle
|
|
{
|
|
public function getPath(): string
|
|
{
|
|
return dirname(__DIR__);
|
|
}
|
|
}
|