File "ReaderInterface.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wp-migrate-db/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php
File size: 332 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace DeliciousBrains\WPMDB\Container\Dotenv\Repository\Adapter;
interface ReaderInterface extends AvailabilityInterface
{
/**
* Get an environment variable, if it exists.
*
* @param non-empty-string $name
*
* @return \PhpOption\Option<string|null>
*/
public function get($name);
}