12 lines
208 B
PHP
12 lines
208 B
PHP
<?php
|
|
namespace Pcm\SearchBundle;
|
|
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|
|
|
class PcmSearchBundle extends Bundle
|
|
{
|
|
public function getPath(): string
|
|
{
|
|
return \dirname(__DIR__);
|
|
}
|
|
} |