Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/./../app/.././../../finland.picotech.app/public_html/storage/../vendor/./nikic/../dompdf/../alexandr-mironov/../monolog/../unicodeveloper/../dragonmantank/../telnyx/../filp/../phpstan/../nikic/../psy/../lcobucci/../telnyx/../sebastian/lines-of-code/../diff/src
الملفات الموجودة في هذا الـ Path:
.
..
Chunk.php
Diff.php
Differ.php
Exception
Line.php
LongestCommonSubsequenceCalculator.php
MemoryEfficientLongestCommonSubsequenceCalculator.php
Output
Parser.php
TimeEfficientLongestCommonSubsequenceCalculator.php

مشاهدة ملف: LongestCommonSubsequenceCalculator.php

<?php declare(strict_types=1);
/*
 * This file is part of sebastian/diff.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace SebastianBergmann\Diff;

interface LongestCommonSubsequenceCalculator
{
    /**
     * Calculates the longest common subsequence of two arrays.
     */
    public function calculate(array $from, array $to): array;
}