Skip to content

Profiler

Sunel Tr edited this page Jul 25, 2018 · 1 revision

Profiler Contract

interface Profiler
{
    /**
     * Starts a measure
     *
     * @param string $key
     */
    public function start($key);

    /**
     * Stops a measure
     *
     * @param string $key
     */
    public function stop($key);
}