AppserverIo\Appserver\Core\InitialContext::newService PHP Метод

newService() публичный Метод

Returns a new instance of the passed API service.
public newService ( string $className ) : AppserverIo\Appserver\Core\Api\ServiceInterface
$className string The API service class name to return the instance for
Результат AppserverIo\Appserver\Core\Api\ServiceInterface The service instance
    public function newService($className)
    {
        return $this->newInstance($className, array($this));
    }