blob: 868c00f114d3cac047577c24749baf3bd7002d1f [file]
<?php
class ClassExample {
public const public = "test";
protected const protected = "test";
private const private = "test";
}
interface InterfaceExample {
public const PUBLIC = "public";
}