Вход Регистрация
Файл: vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php
Строк: 33
<?php

declare(strict_types=1);

namespace 
DotenvRepositoryAdapter;

interface 
WriterInterface
{
    
/**
     * Write to an environment variable, if possible.
     *
     * @param non-empty-string $name
     * @param string           $value
     *
     * @return bool
     */
    
public function write(string $namestring $value);

    
/**
     * Delete an environment variable, if possible.
     *
     * @param non-empty-string $name
     *
     * @return bool
     */
    
public function delete(string $name);
}
Онлайн: 4
Реклама