Overview

Namespaces

  • Inteve
    • Forms
      • Controls

Classes

  • Inteve\Forms\Controls
  • Inteve\Forms\Controls\TextInput
  • Inteve\Forms\Filters
  • Inteve\Forms\FormFactory
  • Overview
  • Namespace
  • Class
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 
<?php

    namespace Inteve\Forms;


    class Filters
    {
        /**
         * @param  string
         * @return string|NULL
         */
        public static function text($value)
        {
            if ($value === '') {
                return NULL;
            }
            return $value;
        }
    }
inteve/forms v0.1.0 API documentation API documentation generated by ApiGen