VersionPress\Utils\PathUtils::countCommonDepth PHP Method

countCommonDepth() private static method

private static countCommonDepth ( $from, $to )
    private static function countCommonDepth($from, $to)
    {
        $depth = 0;
        while (isset($from[$depth], $to[$depth]) && $from[$depth] === $to[$depth]) {
            $depth += 1;
        }
        return $depth;
    }