summaryrefslogtreecommitdiff
path: root/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php')
-rw-r--r--vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php b/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php
new file mode 100644
index 0000000..5604398
--- /dev/null
+++ b/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php
@@ -0,0 +1,15 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Dotenv\Repository\Adapter;
+
+interface AdapterInterface extends ReaderInterface, WriterInterface
+{
+ /**
+ * Create a new instance of the adapter, if it is available.
+ *
+ * @return \PhpOption\Option<\Dotenv\Repository\Adapter\AdapterInterface>
+ */
+ public static function create();
+}