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

File.php « MagicConst « Scalar « Node « PhpParser « lib « php-parser « nikic « vendor - github.com/nextcloud/php-static-scanner-instrumentalization.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db293ef537d2df96f8e36d35fc752fd12252daaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace PhpParser\Node\Scalar\MagicConst;

use PhpParser\Node\Scalar\MagicConst;

class File extends MagicConst
{
    public function getName() {
        return '__FILE__';
    }
}