TYPO3 CMS  TYPO3_6-2
IntegerFilter.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Form\Filter;
3 
23 
30  public function filter($value) {
31  return (int)((string)$value);
32  }
33 
34 }