for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Wcomnisky\Flagship\Context;
class Context implements ContextInterface
{
private $contextList = [];
/**
* {@inheritDoc}
*/
public function add(string $key, string $value): void
$this->contextList[$key] = $value;
}
public function set(array $context): void
$this->contextList = $context;
public function getList(): array
return $this->contextList;