@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * |
32 | 32 | * @param string $sCondition The condition to check |
33 | 33 | * |
34 | - * @return mixed |
|
34 | + * @return Condition |
|
35 | 35 | */ |
36 | 36 | public function when($sCondition) |
37 | 37 | { |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * |
47 | 47 | * @param string $sCondition The condition to check |
48 | 48 | * |
49 | - * @return mixed |
|
49 | + * @return Condition |
|
50 | 50 | */ |
51 | 51 | public function unless($sCondition) |
52 | 52 | { |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | * @param string $sValue1 The first value to compare |
61 | 61 | * @param string $sValue2 The second value to compare |
62 | 62 | * |
63 | - * @return mixed |
|
63 | + * @return Condition |
|
64 | 64 | */ |
65 | 65 | public function ifeq($sValue1, $sValue2) |
66 | 66 | { |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | * @param string $sValue1 The first value to compare |
75 | 75 | * @param string $sValue2 The second value to compare |
76 | 76 | * |
77 | - * @return mixed |
|
77 | + * @return Condition |
|
78 | 78 | */ |
79 | 79 | public function ifne($sValue1, $sValue2) |
80 | 80 | { |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | * @param string $sValue1 The first value to compare |
89 | 89 | * @param string $sValue2 The second value to compare |
90 | 90 | * |
91 | - * @return mixed |
|
91 | + * @return Condition |
|
92 | 92 | */ |
93 | 93 | public function ifgt($sValue1, $sValue2) |
94 | 94 | { |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * @param string $sValue1 The first value to compare |
103 | 103 | * @param string $sValue2 The second value to compare |
104 | 104 | * |
105 | - * @return mixed |
|
105 | + * @return Condition |
|
106 | 106 | */ |
107 | 107 | public function ifge($sValue1, $sValue2) |
108 | 108 | { |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | * @param string $sValue1 The first value to compare |
117 | 117 | * @param string $sValue2 The second value to compare |
118 | 118 | * |
119 | - * @return mixed |
|
119 | + * @return Condition |
|
120 | 120 | */ |
121 | 121 | public function iflt($sValue1, $sValue2) |
122 | 122 | { |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * @param string $sValue1 The first value to compare |
131 | 131 | * @param string $sValue2 The second value to compare |
132 | 132 | * |
133 | - * @return mixed |
|
133 | + * @return Condition |
|
134 | 134 | */ |
135 | 135 | public function ifle($sValue1, $sValue2) |
136 | 136 | { |