for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* \AppserverIo\RemoteMethodInvocation\InitialContextProxy
*
* NOTICE OF LICENSE
* This source file is subject to the Open Software License (OSL 3.0)
* that is available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* PHP version 5
* @author Tim Wagner <[email protected]>
* @author Bernhard Wick <[email protected]>
* @copyright 2015 TechDivision GmbH <[email protected]>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link https://github.com/appserver-io/rmi
* @link http://www.appserver.io
*/
namespace AppserverIo\RemoteMethodInvocation;
* Proxy for the container instance itself.
class InitialContextProxy extends RemoteProxy
{
* Runs a lookup on the container for the class with the
* passed name.
* @param string $className The class name to run the lookup for
* @return \AppserverIo\RemoteMethodInvocation\RemoteObjectInterface The instance
public function lookup($className)
return RemoteProxy::__create($className)->__setSession($this->__getSession());
}