Browse Source

Rename default validation constant to read better

Chris Burke 11 years ago
parent
commit
bc6a55a8ce
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/ORM/Table.php

+ 3 - 3
src/ORM/Table.php

@@ -125,7 +125,7 @@ class Table implements RepositoryInterface, EventListenerInterface
      *
      * @var string
      */
-    const VALIDATOR_DEFAULT = 'default';
+    const DEFAULT_VALIDATOR = 'default';
 
     /**
      * Name of the table as it can be found in the database
@@ -255,7 +255,7 @@ class Table implements RepositoryInterface, EventListenerInterface
         }
         if (!empty($config['validator'])) {
             if (!is_array($config['validator'])) {
-                $this->validator(self::VALIDATOR_DEFAULT, $config['validator']);
+                $this->validator(self::DEFAULT_VALIDATOR, $config['validator']);
             } else {
                 foreach ($config['validator'] as $name => $validator) {
                     $this->validator($name, $validator);
@@ -1149,7 +1149,7 @@ class Table implements RepositoryInterface, EventListenerInterface
      *   use null to get a validator.
      * @return \Cake\Validation\Validator
      */
-    public function validator($name = self::VALIDATOR_DEFAULT, Validator $validator = null)
+    public function validator($name = self::DEFAULT_VALIDATOR, Validator $validator = null)
     {
         if ($validator === null && isset($this->_validators[$name])) {
             return $this->_validators[$name];