<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Validator\Mapping\Loader; /** * Loads validation metadata using PHP attributes. * * @author Bernhard Schussek <[email protected]> * @author Alexander M. Turek <[email protected]> * @author Alexandre Daubois <[email protected]> */ class AttributeLoader extends AnnotationLoader { public function __construct() { parent::__construct(null); } }