* * 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 * @author Alexander M. Turek * @author Alexandre Daubois */ class AttributeLoader extends AnnotationLoader { public function __construct() { parent::__construct(null); } }