}
if (!(node instanceof IPHPDocAwareDeclaration)) {
return null;
}
if (node instanceof ConstantDeclaration) {
ConstantDeclaration constantDeclaration = (ConstantDeclaration) node;
if (constantDeclaration.getConstantValue() instanceof Scalar) {
Scalar scalar = (Scalar) constantDeclaration.getConstantValue();
return scalar.getValue();
}
}
return null;