PHP 8.2.31
Preview: Token.php Size: 644 B
/opt/cpanel/ea-wappspector/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: 8

Name Size Perms Modified Actions
102 B lrw-r--r-- 2025-11-17 20:03:58
Edit Download
595 B lrw-r--r-- 2025-11-17 20:03:58
Edit Download
113 B lrw-r--r-- 2025-11-17 20:03:58
Edit Download
644 B lrw-r--r-- 2025-11-17 20:03:58
Edit Download
1.96 KB lrw-r--r-- 2025-11-17 20:03:58
Edit Download
116 B lrw-r--r-- 2025-11-17 20:03:58
Edit Download
3.57 KB lrw-r--r-- 2025-11-17 20:03:58
Edit Download
2.15 KB lrw-r--r-- 2025-11-17 20:03:58
Edit Download

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