1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36:
<?php
/**
* Interface ServiceLocatorInterface | ServiceLocatorInterface.php
*
* @package Faulancer\ServiceLocator
* @author Florian Knapp <office@florianknapp.de>
*
*/
namespace Faulancer\ServiceLocator;
/**
* Interface ServiceLocatorInterface
*/
interface ServiceLocatorInterface
{
/**
* Get a specific service
*
* Call example -------------------------------------------------
*
* $service = ServiceLocator::instance()->get(Service::class);
*
* or from controller
*
* $service = $this->getServiceLocator()->get(Service::class);
*
* --------------------------------------------------------------
*
* @param string $service
*
* @return ServiceInterface
*/
public function get(string $service = '');
}