<?php/* * This file is part of the DebugBar package. * * (c) 2013 Maxime Bouroumeau-Fuseau * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */namespaceDebugBar;useDebugBar\DataCollector\ExceptionsCollector;useDebugBar\DataCollector\MemoryCollector;useDebugBar\DataCollector\MessagesCollector;useDebugBar\DataCollector\PhpInfoCollector;useDebugBar\DataCollector\RequestDataCollector;useDebugBar\DataCollector\TimeDataCollector;/** * Debug bar subclass which adds all included collectors */classStandardDebugBarextendsDebugBar{publicfunction__construct(){$this->addCollector(newPhpInfoCollector());$this->addCollector(newMessagesCollector());$this->addCollector(newRequestDataCollector());$this->addCollector(newTimeDataCollector());$this->addCollector(newMemoryCollector());$this->addCollector(newExceptionsCollector());}}