Skip to content
Snippets Groups Projects
Validation.php 1.03 KiB
Newer Older
  • Learn to ignore specific revisions
  •     //--------------------------------------------------------------------
        // Setup
        //--------------------------------------------------------------------
    
        /**
         * Stores the classes that contain the
         * rules that are available.
         *
         * @var array
         */
        public $ruleSets = [
            \CodeIgniter\Validation\Rules::class,
            \CodeIgniter\Validation\FormatRules::class,
            \CodeIgniter\Validation\FileRules::class,
            \CodeIgniter\Validation\CreditCardRules::class,
    
            \Myth\Auth\Authentication\Passwords\ValidationRules::class,
    
        /**
         * Specifies the views that are used to display the
         * errors.
         *
         * @var array
         */
        public $templates = [
            'list' => 'CodeIgniter\Validation\Views\list',
            'single' => 'CodeIgniter\Validation\Views\single',
        ];
    
        //--------------------------------------------------------------------
        // Rules
        //--------------------------------------------------------------------