for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Container package.
*
* Copyright (c) Miloš Đurić <[email protected]>
* For full copyright and license information, please refer to the LICENSE file,
* located at the package root folder.
*/
namespace Laganica\Di\Definition;
* Class ValueDefinition
* @package Laganica\Di\Definition
class ValueDefinition implements DefinitionInterface
{
* @var mixed
private $value;
* @param mixed $value
public function __construct($value)
$this->value = $value;
}
* @return mixed
public function getValue()
return $this->value;