Added signup form and revamped phonebook.

This commit is contained in:
2024-08-26 15:33:04 -06:00
parent 9cac1650a1
commit 14a94fdc56
106 changed files with 13527 additions and 601 deletions

View 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);
}