File "WriterInterface.php"

Full Path: /home/isoftco/public_html/hrm/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php
File size: 453 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Dotenv\Repository\Adapter;

interface WriterInterface extends AvailabilityInterface
{
    /**
     * Set an environment variable.
     *
     * @param string      $name
     * @param string|null $value
     *
     * @return void
     */
    public function set($name, $value = null);

    /**
     * Clear an environment variable.
     *
     * @param string $name
     *
     * @return void
     */
    public function clear($name);
}