mirror of
https://github.com/Tildetel/site.git
synced 2026-01-24 08:00:18 +00:00
Added signup form and revamped phonebook.
This commit is contained in:
27
vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php
vendored
Normal file
27
vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotenv\Repository\Adapter;
|
||||
|
||||
interface WriterInterface
|
||||
{
|
||||
/**
|
||||
* Write to an environment variable, if possible.
|
||||
*
|
||||
* @param non-empty-string $name
|
||||
* @param string $value
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function write(string $name, string $value);
|
||||
|
||||
/**
|
||||
* Delete an environment variable, if possible.
|
||||
*
|
||||
* @param non-empty-string $name
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function delete(string $name);
|
||||
}
|
||||
Reference in New Issue
Block a user