Pinq\Parsing\FunctionLocation::__construct PHP Метод

__construct() публичный Метод

public __construct ( $filePath, $namespace, $startLine, $endLine )
    public function __construct($filePath, $namespace, $startLine, $endLine)
    {
        $this->filePath = $filePath;
        $this->namespace = $namespace;
        $this->startLine = $startLine;
        $this->endLine = $endLine;
        $this->hash = implode('-', [$filePath, $namespace, $startLine, $endLine]);
    }