%PDF- %PDF-
Direktori : /home1/lightco1/public_html/lightingrepublic.com.au/libraries/koowa/service/locator/ |
Current File : //home1/lightco1/public_html/lightingrepublic.com.au/libraries/koowa/service/locator/abstract.php |
<?php /** * @version $Id$ * @package Koowa_Service * @subpackage Locator * @copyright Copyright (C) 2007 - 2012 Johan Janssens. All rights reserved. * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> */ /** * Service Abstract Locator * * @author Johan Janssens <johan@nooku.org> * @package Koowa_Service * @subpackage Locator */ abstract class KServiceLocatorAbstract extends KObject implements KServiceLocatorInterface { /** * The type * * @var string */ protected $_type = ''; /** * Get the type * * @return string Returns the type */ public function getType() { return $this->_type; } }