aboutsummaryrefslogtreecommitdiff
path: root/tests/Utilities
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-07-15 15:14:14 +0300
committerValentin Popov <info@valentineus.link>2020-07-15 15:14:14 +0300
commit81687eb05afd20022459054390186a7d3314822b (patch)
tree525a75ef5fb136596c55df15917f9b6f3d3ad987 /tests/Utilities
parentf621cf9ceeabe3b6720a33a276b2ff6bd221c9dd (diff)
downloadphp-epg-service-81687eb05afd20022459054390186a7d3314822b.tar.xz
php-epg-service-81687eb05afd20022459054390186a7d3314822b.zip
Utility of get environment
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'tests/Utilities')
-rw-r--r--tests/Utilities/GetServiceEnvironment.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/Utilities/GetServiceEnvironment.php b/tests/Utilities/GetServiceEnvironment.php
new file mode 100644
index 0000000..cba08ae
--- /dev/null
+++ b/tests/Utilities/GetServiceEnvironment.php
@@ -0,0 +1,38 @@
+<?php
+/**
+ * Copyright 2020 “EPGService”
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an “AS IS” BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+declare(strict_types = 1);
+
+namespace Tests\Utilities;
+
+use EPGService\Environments\ServiceEnvironment;
+
+/**
+ * @copyright Copyright © 2020 “Valentin Popov” <info@valentineus.link>
+ * @license http://www.apache.org/licenses/LICENSE-2.0
+ * @package Tests\Utilities
+ */
+final class GetServiceEnvironment {
+ /**
+ * @return \EPGService\Environments\ServiceEnvironment
+ */
+ public static function get(): ServiceEnvironment {
+ $key = GetKeyUtility::get();
+
+ return ServiceEnvironment::create($key);
+ }
+}