Skip to content
Snippets Groups Projects
Commit 3be01207 authored by jurgenhaas's avatar jurgenhaas
Browse files

docker/l3d#58 Move project settings out of composer.json

parent 6508ad8e
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ abstract class BaseHandler implements BaseHandlerInterface { ...@@ -34,7 +34,7 @@ abstract class BaseHandler implements BaseHandlerInterface {
* *
* @var \LakeDrops\Component\Composer\Config * @var \LakeDrops\Component\Composer\Config
*/ */
public $config; protected $config;
/** /**
* @var \Symfony\Component\Console\Input\InputInterface * @var \Symfony\Component\Console\Input\InputInterface
...@@ -96,6 +96,14 @@ abstract class BaseHandler implements BaseHandlerInterface { ...@@ -96,6 +96,14 @@ abstract class BaseHandler implements BaseHandlerInterface {
*/ */
protected function postInit(): void {} protected function postInit(): void {}
/**
* @return \LakeDrops\Component\Composer\Config
*/
public function getConfig(): Config {
$this->init();
return $this->config;
}
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment