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

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

declare(strict_types=1);

namespace Psalm\Node\Expr\BinaryOp;

use PhpParser\Node\Expr\BinaryOp\Mul;
use Psalm\Node\VirtualNode;

class VirtualMul extends Mul implements VirtualNode
{

}