Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
contextSensitiveLexerWithConstVisibility_01.php
blob: 868c00f114d3cac047577c24749baf3bd7002d1f [
file
]
<?
php
class
ClassExample
{
public
const
public
=
"test"
;
protected
const
protected
=
"test"
;
private
const
private
=
"test"
;
}
interface
InterfaceExample
{
public
const
PUBLIC
=
"public"
;
}