ValidationAnnotationBase.php
596 字节
<?php
/**
* This file is part of the php-annotation framework.
*
* (c) Rasmus Schultz <rasmus@mindplay.dk>
*
* This software is licensed under the GNU LGPL license
* for more information, please see:
*
* <https://github.com/mindplay-dk/php-annotations>
*/
namespace mindplay\test\annotations;
use mindplay\annotations\Annotation;
/**
* Abstract base class for validation annotations.
*/
abstract class ValidationAnnotationBase extends Annotation
{
/**
* @var string The error-message (or string identifier) to display on validation failure
*/
public $message;
}