Exemplo n.º 1
0
<?php

/**
 * @version 	$Id: factory.php 2922 2011-03-17 21:00:54Z johanjanssens $
 * @category	Koowa
 * @package		Koowa_Factory
 * @copyright	Copyright (C) 2007 - 2010 Johan Janssens. All rights reserved.
 * @license		GNU GPLv3 <http://www.gnu.org/licenses/gpl.html>
 * @link        http://www.nooku.org
 */
//Instantiate the factory singleton
KFactory::instantiate();
/**
 * KFactory class
 *
 * @author		Johan Janssens <*****@*****.**>
 * @category	Koowa
 * @package     Koowa_Factory
 * @static
 * @uses 		KIdentifier
 * @uses		KCommandContext
 */
class KFactory
{
    /**
     * The object container
     *
     * @var	array
     */
    protected static $_registry = null;
    /**