Skip to content

Instantly share code, notes, and snippets.

@GerDner
Created September 24, 2013 11:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GerDner/6683561 to your computer and use it in GitHub Desktop.
Save GerDner/6683561 to your computer and use it in GitHub Desktop.
<?php
namespace Lindenbraeu\Buchix\Validation\Validator;
/* *
* This script belongs to the TYPO3 Flow framework. *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
* The TYPO3 project - inspiring people to share! *
* */
/**
* Validator for string length.
*
* @api
*/
class BuchungValidator extends \TYPO3\Flow\Validation\Validator\AbstractValidator {
/**
* Check if $value is valid. If it is not valid, needs to add an error
* to Result.
*
* @param mixed $value
* @return void
* @throws \TYPO3\Flow\Validation\Exception\InvalidValidationOptionsException if invalid validation options have been specified in the constructor
*/
public function isValid($value){
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment