<?php
    declare(ticks=1); // valid statement
    const TICK_VALUE = 1; //invalid statement
    declare(ticks=TICK_VALUE);
?>