climbx/Dotenv

View on GitHub
src/Parser/ValueStepParserInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Climbx\Dotenv\Parser;

interface ValueStepParserInterface
{
    /**
     * Parses a character in a specific state.
     *
     * @param ValueParserState $state
     */
    public function parseChar(ValueParserState $state): void;
}