How to ignore a variable from Intellisense ?

Good afternoon.

I got a class where several variables are set, but when I begin to write in another PHP page the call to this class, the Intellisense pop up show me all variables, but I would like to hide some of them.

For example, see below :

<?php
abstract class myClass {
const foo="To be shown in Intellisense when writting of 'myClass::'";
public static $bar="To be hidden in Intellisense when writting of 'myClass::'";
}
?>

I write in test.php "myClass::'" and Intellisense shows me :

$bar
foo

I would like Intellisense to show me only "foo".

How to do it ?

I've checked all around the web, but didn't find the answer.

Thank you for your help !

Julien Romagnoli