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

VirtualPropertyFetch.php « Expr « Node « Psalm « src « psalm « vimeo « vendor - github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 726da5cfe414a5073c53c8c5f63931c19ed80303 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

namespace Psalm\Node\Expr;

use PhpParser\Node\Expr\PropertyFetch;
use Psalm\Node\VirtualNode;

class VirtualPropertyFetch extends PropertyFetch implements VirtualNode
{

}