PHP 8.2.31
Preview: SourceLocation.php Size: 829 B
//home/nshryvcy/radiantskinclinics.org/wp-content/plugins/woocommerce/lib/packages/GraphQL/Language/SourceLocation.php

<?php declare(strict_types=1);

namespace Automattic\WooCommerce\Vendor\GraphQL\Language;

class SourceLocation implements \JsonSerializable
{
    public int $line;

    public int $column;

    public function __construct(int $line, int $col)
    {
        $this->line = $line;
        $this->column = $col;
    }

    /** @return array{line: int, column: int} */
    public function toArray(): array
    {
        return [
            'line' => $this->line,
            'column' => $this->column,
        ];
    }

    /** @return array{line: int, column: int} */
    public function toSerializableArray(): array
    {
        return $this->toArray();
    }

    /** @return array{line: int, column: int} */
    #[\ReturnTypeWillChange]
    public function jsonSerialize(): array
    {
        return $this->toArray();
    }
}

Directory Contents

Dirs: 1 × Files: 13

Name Size Perms Modified Actions
AST DIR
- drwxr-xr-x 2026-05-29 02:43:21
Edit Download
5.14 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
2.21 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
23.38 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
61.88 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
20.69 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
1.68 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
829 B lrw-r--r-- 2026-05-05 14:26:50
Edit Download
2.57 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
18.23 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
126 B lrw-r--r-- 2026-05-05 14:26:50
Edit Download
149 B lrw-r--r-- 2026-05-05 14:26:50
Edit Download
147 B lrw-r--r-- 2026-05-05 14:26:50
Edit Download
143 B lrw-r--r-- 2026-05-05 14:26:50
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).