for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Magium\Configuration\Config;
use Magium\Configuration\Config\Repository\ConfigurationRepository;
class Context
{
protected $context;
public function __construct($context = ConfigurationRepository::CONTEXT_DEFAULT)
$this->context = $context;
}
public function getContext()
return $this->context;
public function __toString()