| 1 | <?php namespace EvolutionCMS; |
||
| 5 | class ServiceProvider implements ServiceProviderInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | private $name; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Constructor for the container argument. |
||
| 14 | * |
||
| 15 | * @param string $name The service name. |
||
| 16 | */ |
||
| 17 | public function __construct($name) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Retrieve the service name. |
||
| 24 | * |
||
| 25 | * @return string The service name. |
||
| 26 | */ |
||
| 27 | public function getName() |
||
| 31 | } |
||
| 32 |