File ManagerCurrent Directory: wp-content/plugins/wp-migrate-db/vendor/vlucas/phpdotenv/src/RepositoryLinux appserver-0d5e4f1e-php-cc8da225320a42ba9b7d66cba40b1f03 6.6.123+ #1 SMP PREEMPT_DYNAMIC Wed Mar 11 09:04:28 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