Welcome to mirror list, hosted at ThFree Co, Russian Federation.

KeyedArrayPropertyTree.php « ParseTree « Type « Internal « Psalm « src « psalm « vimeo « vendor - github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e06d863030d653f27d5fd9ed572fd8485805df0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

namespace Psalm\Internal\Type\ParseTree;

use Psalm\Internal\Type\ParseTree;

/**
 * @internal
 */
class KeyedArrayPropertyTree extends ParseTree
{
    /**
     * @var string
     */
    public $value;

    public function __construct(string $value, ?ParseTree $parent = null)
    {
        $this->value = $value;
        $this->parent = $parent;
    }
}