Browse Source

Fixing style errors.

stickler-ci 7 years ago
parent
commit
3a3926fb89
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/Validation/Validator.php

+ 3 - 0
src/Validation/Validator.php

@@ -949,6 +949,7 @@ class Validator implements ArrayAccess, IteratorAggregate, Countable
     public function notEmptyDate($field, $message = null, $when = false)
     {
         $when = $this->invertWhenClause($when);
+
         return $this->allowEmptyFor($field, self::EMPTY_STRING | self::EMPTY_DATE, $when, $message);
     }
 
@@ -993,6 +994,7 @@ class Validator implements ArrayAccess, IteratorAggregate, Countable
     public function notEmptyTime($field, $message = null, $when = false)
     {
         $when = $this->invertWhenClause($when);
+
         return $this->allowEmptyFor($field, self::EMPTY_STRING | self::EMPTY_TIME, $when, $message);
     }
 
@@ -1037,6 +1039,7 @@ class Validator implements ArrayAccess, IteratorAggregate, Countable
     public function notEmptyDateTime($field, $message = null, $when = true)
     {
         $when = $this->invertWhenClause($when);
+
         return $this->allowEmptyFor($field, self::EMPTY_STRING | self::EMPTY_DATE | self::EMPTY_TIME, $when, $message);
     }