for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kir\Services\Cmd\Dispatcher\Dispatchers\DefaultDispatcher;
class Service {
/** @var string */
private $key;
/**
* @param string $key
*/
public function __construct(string $key) {
$this->key = $key;
}
* @return string
public function getKey(): string {
return $this->key;
public function __toString(): string {