Completed
Branch master (37a6f7)
by Václav
05:19
created
src/Calculators/AnnuityCalculator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/Calculators/BondFairValueCalculator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Constants/ErrorMessages.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/Interfaces/Calculator/CalculatorAbstract.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
                 if (is_object($value) || is_null($value)) {
29 29
                     $this->$name = $value;
30 30
                 } else {
31
-                    $this->$name = (string) $value;
31
+                    $this->$name = (string)$value;
32 32
                 }
33 33
                 return;
34 34
             }
@@ -50,11 +50,11 @@  discard block
 block discarded – undo
50 50
                 }
51 51
             }
52 52
 
53
-            $processArray = function ($inputArray) use (&$processArray) {
53
+            $processArray = function($inputArray) use (&$processArray) {
54 54
                 $processedArray = array();
55 55
                 foreach ($inputArray as $key => $prop) {
56 56
                     if (is_string($prop)) {
57
-                        $propGetter = "get" . ucfirst($prop);
57
+                        $propGetter = "get".ucfirst($prop);
58 58
                         if (method_exists($this, $propGetter)) {
59 59
                             $processedArray[is_string($key) ? $key : $prop] = call_user_func(array($this, $propGetter));
60 60
                         } else {
Please login to merge, or discard this patch.
src/Utils/Config.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         }
32 32
 
33 33
         /**
34
-         * @param $key
34
+         * @param string $key
35 35
          * @return mixed
36 36
          * @throws Exception
37 37
          */
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
          * @return mixed
36 36
          * @throws Exception
37 37
          */
38
-        public static function getConfigField($key){
39
-            if(empty(static::$configArray)) {
38
+        public static function getConfigField($key) {
39
+            if (empty(static::$configArray)) {
40 40
                 Config::init();
41 41
             }
42 42
 
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
          * @param $key
54 54
          * @param $value
55 55
          */
56
-        public static function setConfigField($key, $value){
57
-            if(empty(static::$configArray)) {
56
+        public static function setConfigField($key, $value) {
57
+            if (empty(static::$configArray)) {
58 58
                 Config::init();
59 59
             }
60 60
 
Please login to merge, or discard this patch.
src/Utils/Enum.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         {
Please login to merge, or discard this patch.
src/Utils/Helpers.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
          * @return bool|null
110 110
          */
111 111
         static function checkNumberRelativityToZero($checkedVariable, $expectedResult) {
112
-            if(is_numeric((string)$checkedVariable)) {
112
+            if (is_numeric((string)$checkedVariable)) {
113 113
                 return MathFuncs::comp($checkedVariable, "0.00") == $expectedResult;
114 114
             }
115 115
 
Please login to merge, or discard this patch.
src/Utils/Strings.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
                 $locale = Config::getConfigField("locale");
28 28
             }
29 29
 
30
-            $localePath = FinanCalc::getPath() . "/locale/$locale.php";
30
+            $localePath = FinanCalc::getPath()."/locale/$locale.php";
31 31
 
32 32
             if (!file_exists($localePath)) {
33 33
                 return null;
@@ -55,8 +55,7 @@  discard block
 block discarded – undo
55 55
             $unformattedString = Strings::getString($identifier, $locale);
56 56
 
57 57
             return is_null($unformattedString) ?
58
-                null :
59
-                vsprintf($unformattedString, $formatArgs);
58
+                null : vsprintf($unformattedString, $formatArgs);
60 59
         }
61 60
     }
62 61
 }
63 62
\ No newline at end of file
Please login to merge, or discard this patch.
src/Utils/Time/TimeSpan.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -199,10 +199,10 @@
 block discarded – undo
199 199
         private function newDateIntervalAbsolute($years, $months, $days) {
200 200
             $this->setdateInterval(
201 201
                 new DateInterval(
202
-                    "P" .
203
-                    (string)$years . "Y" .
204
-                    (string)$months . "M" .
205
-                    (string)$days . "D"
202
+                    "P".
203
+                    (string)$years."Y".
204
+                    (string)$months."M".
205
+                    (string)$days."D"
206 206
                 )
207 207
             );
208 208
         }
Please login to merge, or discard this patch.