1
1
<?php
2
2
3
+ declare (strict_types=1 );
4
+
3
5
namespace Mattiasgeniar \Percentage ;
4
6
5
7
class Percentage
6
8
{
7
9
/**
8
10
* What is the percentage increase or decrease from $a to $b ?
9
11
*/
10
- public static function differenceBetween ($ a , $ b )
12
+ public static function differenceBetween ($ a , $ b ): float
11
13
{
12
14
return floatval (($ b - $ a ) / $ a * 100 );
13
15
}
14
16
15
17
/**
16
18
* What is the absolute percentage increase or decrease from $a to $b ?
17
19
*/
18
- public static function absoluteDifferenceBetween ($ a , $ b )
20
+ public static function absoluteDifferenceBetween ($ a , $ b ): float
19
21
{
20
22
return floatval (abs (static ::differenceBetween ($ a , $ b )));
21
23
}
22
24
23
25
/**
24
26
* How much is $a of $b in percentages?
25
27
*/
26
- public static function calculate ($ a , $ b )
28
+ public static function calculate ($ a , $ b ): float
27
29
{
28
30
return floatval ($ a * 100 / $ b );
29
31
}
30
32
31
33
/**
32
34
* Get a percentage return from a number.
33
35
*/
34
- public static function of ($ percentage , $ number )
36
+ public static function of ($ percentage , $ number ): float
35
37
{
36
38
return floatval ($ number * ($ percentage / 100 ));
37
39
}
@@ -41,14 +43,12 @@ public static function of($percentage, $number)
41
43
*/
42
44
public static function extension ($ percentage , $ a , $ b ): float
43
45
{
44
- if ($ a > $ b ) {
45
- $ movement = $ a - $ b ;
46
+ $ movement = abs ($ a - $ b );
46
47
48
+ if ($ a > $ b ) {
47
49
return floatval ($ a - ($ movement * $ percentage / 100 ));
48
- } else {
49
- $ movement = $ b - $ a ;
50
-
51
- return floatval ($ a + ($ movement * $ percentage / 100 ));
52
50
}
51
+
52
+ return floatval ($ a + ($ movement * $ percentage / 100 ));
53
53
}
54
54
}
0 commit comments