@@ -143,7 +143,7 @@ |
||
143 | 143 | } |
144 | 144 | |
145 | 145 | /** |
146 | - * @return mixed |
|
146 | + * @return string |
|
147 | 147 | */ |
148 | 148 | public function getAnnuityPeriodLengthInDays() { |
149 | 149 | return $this->annuityPeriodLength->toDays(); |
@@ -73,7 +73,7 @@ |
||
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
76 | - * @return float |
|
76 | + * @return string |
|
77 | 77 | */ |
78 | 78 | public function getBondFairValue() { |
79 | 79 | // we need to get the coupon rate per payment period = c/payment frequency |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | { |
13 | 13 | /** |
14 | 14 | * @param $expectedTypeName [Name of the expected class as a string] |
15 | - * @param $foundTypeName [Name of the class that was used instead] |
|
15 | + * @param string $foundTypeName [Name of the class that was used instead] |
|
16 | 16 | * @return string [Concatenated message as a string] |
17 | 17 | */ |
18 | 18 | static function getIncompatibleTypesMessage($expectedTypeName, $foundTypeName) { |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | |
64 | 64 | /** |
65 | 65 | * @param $propertyName [Name of the property as a string] |
66 | - * @param $className [Name of the class as a string] |
|
66 | + * @param string $className [Name of the class as a string] |
|
67 | 67 | * @return string [Concatenated message as a string] |
68 | 68 | */ |
69 | 69 | static function getNonExistentPropertyMessage($propertyName, $className) { |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | |
104 | 104 | /** |
105 | 105 | * @param $factoryClassName [Name of the factory class as a string] |
106 | - * @param $factoryClassAncestorName [Name of the factory class' expected parent class name as a string] |
|
106 | + * @param string $factoryClassAncestorName [Name of the factory class' expected parent class name as a string] |
|
107 | 107 | * @return string [Concatenated message as a string] |
108 | 108 | */ |
109 | 109 | static function getFactoryClassExpectedAncestorMessage($factoryClassName, $factoryClassAncestorName) { |
@@ -163,8 +163,8 @@ discard block |
||
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
166 | - * @param $methodName [Name of the method] |
|
167 | - * @param $className [Name of the class] |
|
166 | + * @param string $methodName [Name of the method] |
|
167 | + * @param string $className [Name of the class] |
|
168 | 168 | * @return string [Concatenated message as a string] |
169 | 169 | */ |
170 | 170 | static function getMethodDoesNotExistMessage($methodName, $className) { |
@@ -14,9 +14,9 @@ |
||
14 | 14 | protected $propResultArray = null; |
15 | 15 | |
16 | 16 | /** |
17 | - * @param $name |
|
17 | + * @param string $name |
|
18 | 18 | * @param $value |
19 | - * @param null $callbackBefore |
|
19 | + * @param \Closure $callbackBefore |
|
20 | 20 | * @throws Exception |
21 | 21 | */ |
22 | 22 | protected final function setProperty($name, $value, $callbackBefore = null) { |
@@ -31,7 +31,7 @@ |
||
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
34 | - * @param $key |
|
34 | + * @param string $key |
|
35 | 35 | * @return mixed |
36 | 36 | * @throws Exception |
37 | 37 | */ |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | /** |
17 | 17 | * Return string representation of this enum |
18 | 18 | * |
19 | - * @return string |
|
19 | + * @return integer |
|
20 | 20 | */ |
21 | 21 | public function getValue() |
22 | 22 | { |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * </code> |
72 | 72 | * |
73 | 73 | * @param string $property |
74 | - * @return string |
|
74 | + * @return integer |
|
75 | 75 | */ |
76 | 76 | function __get($property) |
77 | 77 | { |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | /** |
29 | 29 | * @param $leftOperand |
30 | 30 | * @param $rightOperand |
31 | - * @param $messageOnException |
|
31 | + * @param string $messageOnException |
|
32 | 32 | * @return bool |
33 | 33 | */ |
34 | 34 | static function checkIfLeftOperandGreaterOrThrowAnException($leftOperand, $rightOperand, $messageOnException) { |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | } |
65 | 65 | |
66 | 66 | /** |
67 | - * @param $checkedVariable |
|
67 | + * @param null|\FinanCalc\Constants\AnnuityPaymentTypes $checkedVariable |
|
68 | 68 | * @return bool |
69 | 69 | */ |
70 | 70 | static function checkIfNotNull($checkedVariable) { |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | |
106 | 106 | /** |
107 | 107 | * @param $checkedVariable |
108 | - * @param $expectedResult |
|
108 | + * @param integer $expectedResult |
|
109 | 109 | * @return bool|null |
110 | 110 | */ |
111 | 111 | static function checkNumberRelativityToZero($checkedVariable, $expectedResult) { |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
120 | - * @param $inputValue |
|
120 | + * @param string $inputValue |
|
121 | 121 | * @return string |
122 | 122 | */ |
123 | 123 | static function roundMoneyForDisplay($inputValue) { |
@@ -44,7 +44,7 @@ |
||
44 | 44 | } |
45 | 45 | |
46 | 46 | /** |
47 | - * @param $identifier |
|
47 | + * @param string $identifier |
|
48 | 48 | * @param $locale |
49 | 49 | * @param null $formatArgs |
50 | 50 | * @return string |