File ManagerCurrent Directory: wp-content/plugins/wp-migrate-db/vendor/vlucas/phpdotenv/src/RepositoryLinux appserver-7a7af3b2-php-0c9ec09e2f9746c2a80fa3756c076432 6.12.94+ #1 SMP Fri Jul 17 09:26:56 UTC 2026 x86_64Edit File: RepositoryInterface.php <?php namespace DeliciousBrains\WPMDB\Container\Dotenv\Repository; use ArrayAccess; /** * @extends \ArrayAccess<string,string|null> */ interface RepositoryInterface extends ArrayAccess { /** * Tells whether environment variable has been defined. * * @param string $name * * @return bool */ public function has($name); /** * Get an environment variable. * * @param string $name * * @throws \InvalidArgumentException * * @return string|null */ public function get($name); /** * Set an environment variable. * * @param string $name * @param string|null $value * * @throws \InvalidArgumentException * * @return void */ public function set($name, $value = null); /** * Clear an environment variable. * * @param string $name * * @throws \InvalidArgumentException * * @return void */ public function clear($name); } Upload File Directory Listing NameTypeSizeActions.. (Parent Directory)DirAbstractRepository.phpFile3.81 KB Rename | Delete | EditAdapterDirectory Rename | DeleteAdapterRepository.phpFile1.92 KB Rename | Delete | EditRepositoryBuilder.phpFile3.86 KB Rename | Delete | EditRepositoryInterface.phpFile1,005.00 B Rename | Delete | Edit