for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by gerk on 21.11.17 06:34
*/
namespace PeekAndPoke\Types;
* @author Karsten J. Gerber <[email protected]>
class GenericHolder implements ValueHolder
{
/** @var mixed */
private $value;
* @param mixed $value
public function __construct($value)
$this->value = $value;
}
* @return mixed
public function getValue()
return $this->value;