2016-09-22 12:54:03 +02:00

22 lines
298 B
PHP

<?php
namespace DesignPatterns\Behavioral\Specification;
class Item
{
/**
* @var float
*/
private $price;
public function __construct(float $price)
{
$this->price = $price;
}
public function getPrice(): float
{
return $this->price;
}
}