소스 검색

typo

tags/0.1.11
Robin Thoni 8 년 전
부모
커밋
19efe9e341
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 2
    2
      src/Utils/Dbo/LuFloatDbo.php
  2. 2
    2
      src/Utils/Dbo/LuIntDbo.php

+ 2
- 2
src/Utils/Dbo/LuFloatDbo.php 파일 보기

65
     public function min($min)
65
     public function min($min)
66
     {
66
     {
67
         if ($this->_value < $min) {
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
     public function max($max)
72
     public function max($max)
73
     {
73
     {
74
         if ($this->_value > $max) {
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 파일 보기

65
     public function min($min)
65
     public function min($min)
66
     {
66
     {
67
         if ($this->_value < $min) {
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
     public function max($max)
72
     public function max($max)
73
     {
73
     {
74
         if ($this->_value > $max) {
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…
취소
저장