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

VirtualArray.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: c75e906a16e0f5a1bce34ef865345aa6700a253f (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\Array_;
use Psalm\Node\VirtualNode;

class VirtualArray extends Array_ implements VirtualNode
{

}