Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions configuration/multiple_kernels.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,18 +124,13 @@ resources::

class Kernel extends BaseKernel
{
use MicroKernelTrait;
use MicroKernelTrait { getConfigDir as getSharedConfigDir; }

public function __construct(string $environment, bool $debug, private string $id)
{
parent::__construct($environment, $debug);
}

public function getSharedConfigDir(): string
{
return $this->getProjectDir().'/config';
}

public function getAppConfigDir(): string
{
return $this->getProjectDir().'/apps/'.$this->id.'/config';
Expand Down