Browse Source

typo

tags/0.1.11
Robin Thoni 8 years ago
parent
commit
19efe9e341
2 changed files with 4 additions and 4 deletions
  1. 2
    2
      src/Utils/Dbo/LuFloatDbo.php
  2. 2
    2
      src/Utils/Dbo/LuIntDbo.php

+ 2
- 2
src/Utils/Dbo/LuFloatDbo.php View File

@@ -65,14 +65,14 @@ class LuFloatDbo extends LuDbo
65 65
     public function min($min)
66 66
     {
67 67
         if ($this->_value < $min) {
68
-            throw new LuDboConstraintException("Float must be greater or equal than ${min}");
68
+            throw new LuDboConstraintException("Float must be greater or equal to ${min}");
69 69
         }
70 70
     }
71 71
 
72 72
     public function max($max)
73 73
     {
74 74
         if ($this->_value > $max) {
75
-            throw new LuDboConstraintException("Float must be smaller or equal than ${max}");
75
+            throw new LuDboConstraintException("Float must be smaller or equal to ${max}");
76 76
         }
77 77
     }
78 78
 }

+ 2
- 2
src/Utils/Dbo/LuIntDbo.php View File

@@ -65,14 +65,14 @@ class LuIntDbo extends LuDbo
65 65
     public function min($min)
66 66
     {
67 67
         if ($this->_value < $min) {
68
-            throw new LuDboConstraintException("Integer must be greater or equal than ${min}");
68
+            throw new LuDboConstraintException("Integer must be greater or equal to ${min}");
69 69
         }
70 70
     }
71 71
 
72 72
     public function max($max)
73 73
     {
74 74
         if ($this->_value > $max) {
75
-            throw new LuDboConstraintException("Integer must be smaller or equal than ${max}");
75
+            throw new LuDboConstraintException("Integer must be smaller or equal to ${max}");
76 76
         }
77 77
     }
78 78
     

Loading…
Cancel
Save