Files
DesignPatternsPHP/Structural/DependencyInjection/AbstractConfig.php
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03:00

20 lines
278 B
PHP

<?php
namespace DesignPatterns\DependencyInjection;
/**
* class AbstractConfig
*/
abstract class AbstractConfig
{
/**
* @var Storage of data
*/
protected $storage;
public function __construct($storage)
{
$this->storage = $storage;
}
}