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

VirtualArrowFunction.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: 07b4f700fc831c028487dcaaf4a77d34cc35c35a (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\ArrowFunction;
use Psalm\Node\VirtualNode;

class VirtualArrowFunction extends ArrowFunction implements VirtualNode
{

}