<?php

class Test
{
    const EMPTY = 100;

    public function __construct()
    {
        echo 'test';
    }
}

$test = new Test;