mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2025-12-24 01:57:51 -05:00
* Improve code style and PSR-12 compliance - refactored code formatting to adhere to PSR-12 guidelines - standardized coding conventions across the codebase - added missing framework files and reverted markup changes - reformatted arrays for enhanced readability - updated language files for consistent styling and clarity - minor miscellaneous improvements
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
use CodeIgniter\Validation\StrictRules\CreditCardRules;
|
|
use CodeIgniter\Validation\StrictRules\FileRules;
|
|
use CodeIgniter\Validation\StrictRules\FormatRules;
|
|
use CodeIgniter\Validation\StrictRules\Rules;
|
|
use App\Config\Validation\OSPOSRules;
|
|
|
|
class Validation extends BaseConfig
|
|
{
|
|
// --------------------------------------------------------------------
|
|
// Setup
|
|
// --------------------------------------------------------------------
|
|
|
|
/**
|
|
* Stores the classes that contain the
|
|
* rules that are available.
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
public array $ruleSets = [
|
|
Rules::class,
|
|
FormatRules::class,
|
|
FileRules::class,
|
|
CreditCardRules::class,
|
|
OSPOSRules::class,
|
|
];
|
|
|
|
/**
|
|
* Specifies the views that are used to display the
|
|
* errors.
|
|
*
|
|
* @var array<string, string>
|
|
*/
|
|
public array $templates = [
|
|
'list' => 'CodeIgniter\Validation\Views\list',
|
|
'single' => 'CodeIgniter\Validation\Views\single',
|
|
];
|
|
|
|
// --------------------------------------------------------------------
|
|
// Rules
|
|
// --------------------------------------------------------------------
|
|
}
|