/**
  * @param Node\Stmt\Const_ $node
  */
 protected function parseConstantNode(Node\Stmt\Const_ $node)
 {
     foreach ($node->consts as $const) {
         $this->globalConstants[] = ['name' => $const->name, 'startLine' => $node->getLine(), 'docComment' => $node->getDocComment() ? $node->getDocComment()->getText() : null];
     }
 }