Your IP : 216.73.216.43


Current Path : /proc/thread-self/root/var/www/surf/TYPO3/vendor/lolli42/finediff/src/Parser/
Upload File :
Current File : //proc/thread-self/root/var/www/surf/TYPO3/vendor/lolli42/finediff/src/Parser/ParserInterface.php

<?php

declare(strict_types=1);

/*
 * FINE granularity DIFF
 *
 * (c) 2011 Raymond Hill (http://raymondhill.net/blog/?p=441)
 * (c) 2013 Robert Crowe (http://cogpowered.com)
 * (c) 2021 Christian Kuhn
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

namespace cogpowered\FineDiff\Parser;

use cogpowered\FineDiff\Granularity\GranularityInterface;

interface ParserInterface
{
    /**
     * Creates an instance.
     */
    public function __construct(GranularityInterface $granularity);

    /**
     * Granularity the parser is working with.
     *
     * Default is \cogpowered\FineDiff\Granularity\Character.
     *
     * @return GranularityInterface
     */
    public function getGranularity();

    /**
     * Set the granularity that the parser is working with.
     */
    public function setGranularity(GranularityInterface $granularity): void;

    /**
     * Get the opcodes object that is used to store all the opcodes.
     */
    public function getOpcodes(): OpcodesInterface;

    /**
     * Set the opcodes object used to store all the opcodes for this parse.
     */
    public function setOpcodes(OpcodesInterface $opcodes): void;

    /**
     * Generates the opcodes needed to transform one string to another.
     */
    public function parse(string $from_text, string $to_text): OpcodesInterface;
}