for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace EvolutionCMS;
use EvolutionCMS\Interfaces\ServiceProviderInterface;
class ServiceProvider implements ServiceProviderInterface
{
/**
* @var string
*/
private $name;
* Constructor for the container argument.
*
* @param string $name The service name.
public function __construct($name)
$this->name = $name;
}
* Retrieve the service name.
* @return string The service name.
public function getName()
return $this->name;