for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Phoole (PHP7.2+)
*
* @category Library
* @package Phoole\Config
* @copyright Copyright (c) 2019 Hong Zhang
*/
declare(strict_types=1);
namespace Phoole\Config;
* ConfigAwareTrait
trait ConfigAwareTrait
{
* @var Config
protected $config;
* @param Config $config
* @return $this
public function setConfig(Config $config)
$this->config = $config;
return $this;
}
* @return ConfigInterface
* @throws \LogicException if not set yet
public function getConfig(): Config
if (is_null($this->config)) {
throw new \LogicException("Config not set in " . get_class($this));
return $this->config;