PHP 8.3.31
Preview: Token.php Size: 644 B
/home/getspomw/royalsquad.us/vendor/theseer/tokenizer/src/Token.php

<?php declare(strict_types = 1);
namespace TheSeer\Tokenizer;

class Token {

    /** @var int */
    private $line;

    /** @var string */
    private $name;

    /** @var string */
    private $value;

    /**
     * Token constructor.
     */
    public function __construct(int $line, string $name, string $value) {
        $this->line  = $line;
        $this->name  = $name;
        $this->value = $value;
    }

    public function getLine(): int {
        return $this->line;
    }

    public function getName(): string {
        return $this->name;
    }

    public function getValue(): string {
        return $this->value;
    }
}

Directory Contents

Dirs: 0 × Files: 9

Name Size Perms Modified Actions
1.92 KB lrw-r--r-- 2026-04-26 08:34:01
Edit Download
102 B lrw-rw-rw- 2025-09-17 06:53:32
Edit Download
595 B lrw-rw-rw- 2025-09-17 06:53:32
Edit Download
113 B lrw-rw-rw- 2025-09-17 06:53:32
Edit Download
644 B lrw-rw-rw- 2025-09-17 06:53:32
Edit Download
2.19 KB lrw-rw-rw- 2025-09-17 06:53:32
Edit Download
116 B lrw-rw-rw- 2025-09-17 06:53:32
Edit Download
3.50 KB lrw-rw-rw- 2025-09-17 06:53:32
Edit Download
2.23 KB lrw-rw-rw- 2025-09-17 06:53:32
Edit Download

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