Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php

namespace ClassPreloader\Parser;

/**
 * Abstract node visitor used to track the filename
 */
abstract class AbstractNodeVisitor extends \PHPParser_NodeVisitorAbstract
{
    /**
     * @var string Current file being parsed
     */
    protected $filename = '';

    /**
     * Set the full path to the current file being parsed
     *
     * @param string $filename Filename being parser
     *
     * @return self
     */
    public function setFilename($filename)
    {
        $this->filename = $filename;

        return $this;
    }

    /**
     * Get the full path to the current file being parsed
     *
     * @return string
     */
    public function getFilename()
    {
        return $this->filename;
    }

    /**
     * Get the directory of the current file being parsed
     *
     * @return string
     */
    public function getDir()
    {
        return dirname($this->getFilename());
    }
}

Commits for Nextrek/Aiba_backup/vendor/classpreloader/classpreloader/src/ClassPreloader/Parser/AbstractNodeVisitor.php

Diff revisions: vs.
Revision Author Commited Message
1464 MOliva picture MOliva Tue 13 Oct, 2020 11:16:56 +0000