<?php
namespace spiral\framework\di\fixtures;
/**
* Represent a generalist store.
*
* @author Frédéric Sureau <hide@address.com>
*/
class Store
{
public $constructionArgument = 23;
public $name = 'Default name';
public function __construct($constructionArgument=null)
{
$this->constructionArgument = $constructionArgument;
}
public function setName($name)
{
$this->name = $name;
}
}