mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
20 lines
289 B
PHP
20 lines
289 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\DependencyInjection;
|
|
|
|
/**
|
|
* class AbstractConfig
|
|
*/
|
|
abstract class AbstractConfig
|
|
{
|
|
/**
|
|
* @var Storage of data
|
|
*/
|
|
protected $storage;
|
|
|
|
public function __construct($storage)
|
|
{
|
|
$this->storage = $storage;
|
|
}
|
|
}
|