AppserverIo\Appserver\Core\AbstractContainerThread::getApplication PHP 메소드

getApplication() 공개 메소드

Returns the application instance with the passed name.
public getApplication ( string $name ) : AppserverIo\Psr\Application\ApplicationInterface
$name string The name of the application to return
리턴 AppserverIo\Psr\Application\ApplicationInterface The application instance
    public function getApplication($name)
    {
        if (isset($this->applications[$name])) {
            return $this->applications[$name];
        }
    }