for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpHocon\Token;
class Key implements Element
{
/**
* @var string
*/
private $name;
* @param string $name
public function __construct($name)
$this->name = $name;
}
* @return string
public function getName()
return $this->name;