summaryrefslogtreecommitdiff
path: root/server/core/LibOverride/OpenStack.php
diff options
context:
space:
mode:
authorEole <EoleDev@outlook.fr>2016-01-31 12:29:20 +0100
committerEole <EoleDev@outlook.fr>2016-01-31 12:29:20 +0100
commitd00ea4f7b1317ed5e9fe2743ea61ceb4330aadf6 (patch)
treef72f45dd0cf4816951aa0829c0d3120bb0c78b54 /server/core/LibOverride/OpenStack.php
parentf10df7fee15a15728ca2f2f539c8c1e6b123a5e4 (diff)
nettoyage
Diffstat (limited to 'server/core/LibOverride/OpenStack.php')
-rw-r--r--server/core/LibOverride/OpenStack.php43
1 files changed, 0 insertions, 43 deletions
diff --git a/server/core/LibOverride/OpenStack.php b/server/core/LibOverride/OpenStack.php
deleted file mode 100644
index 2b3897a..0000000
--- a/server/core/LibOverride/OpenStack.php
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-namespace OpenStack;
-
-#use OpenStack\Common\Service\Builder;
-use OpenStack\Common\Service\Builder_override;
-/**
- * This class is the primary entry point for working with the SDK. It allows for the easy creation
- * of OpenStack services.
- *
- * @package OpenStack
- */
-class OpenStack_override extends OpenStack
-{
- /**
- * @param array $options User-defined options
- *
- * $options['username'] = (string) Your OpenStack username [REQUIRED]
- * ['password'] = (string) Your OpenStack password [REQUIRED]
- * ['tenantId'] = (string) Your tenant ID [REQUIRED if tenantName omitted]
- * ['tenantName'] = (string) Your tenant name [REQUIRED if tenantId omitted]
- * ['authUrl'] = (string) The Keystone URL [REQUIRED]
- * ['debug'] = (bool) Whether to enable HTTP logging [OPTIONAL]
- */
- public function __construct(array $options = [], Builder $builder = null)
- {
- $this->builder = $builder ?: new Builder_override($options);
- parent::__construct($options, $this->builder);
- }
-
- public function getBuilderOptions()
- {
-
- return $this->builder->getOptions();
-
- }
-
- public function setBuilderOptions($options)
- {
-
- $this->builder->setOptions($options);
-
- }
-}