summaryrefslogtreecommitdiff
path: root/src/Environment.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Environment.php')
-rw-r--r--src/Environment.php36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/Environment.php b/src/Environment.php
deleted file mode 100644
index 6e88783..0000000
--- a/src/Environment.php
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-namespace andreskrey\Readability;
-
-final class Environment
-{
- /**
- * @var Configuration
- */
- protected $config;
-
- public function __construct(array $config = [])
- {
- $this->config = new Configuration($config);
- }
-
- /**
- * @return Configuration
- */
- public function getConfig()
- {
- return $this->config;
- }
-
- /**
- * @param array $config
- *
- * @return Environment
- */
- public static function createDefaultEnvironment(array $config = [])
- {
- $environment = new static($config);
-
- return $environment;
- }
-}