Skip to content

Commit ecb033e

Browse files
Merge pull request #2 from ianrodrigues/patch-2
Clean up
2 parents f6dd3a7 + 7c76787 commit ecb033e

File tree

3 files changed

+11
-17
lines changed

3 files changed

+11
-17
lines changed

config/.gitkeep

Whitespace-only changes.

src/Percentage.php

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,39 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Mattiasgeniar\Percentage;
46

57
class Percentage
68
{
79
/**
810
* What is the percentage increase or decrease from $a to $b ?
911
*/
10-
public static function differenceBetween($a, $b)
12+
public static function differenceBetween($a, $b): float
1113
{
1214
return floatval(($b - $a) / $a * 100);
1315
}
1416

1517
/**
1618
* What is the absolute percentage increase or decrease from $a to $b ?
1719
*/
18-
public static function absoluteDifferenceBetween($a, $b)
20+
public static function absoluteDifferenceBetween($a, $b): float
1921
{
2022
return floatval(abs(static::differenceBetween($a, $b)));
2123
}
2224

2325
/**
2426
* How much is $a of $b in percentages?
2527
*/
26-
public static function calculate($a, $b)
28+
public static function calculate($a, $b): float
2729
{
2830
return floatval($a * 100 / $b);
2931
}
3032

3133
/**
3234
* Get a percentage return from a number.
3335
*/
34-
public static function of($percentage, $number)
36+
public static function of($percentage, $number): float
3537
{
3638
return floatval($number * ($percentage / 100));
3739
}
@@ -41,14 +43,12 @@ public static function of($percentage, $number)
4143
*/
4244
public static function extension($percentage, $a, $b): float
4345
{
44-
if ($a > $b) {
45-
$movement = $a - $b;
46+
$movement = abs($a - $b);
4647

48+
if ($a > $b) {
4749
return floatval($a - ($movement * $percentage / 100));
48-
} else {
49-
$movement = $b - $a;
50-
51-
return floatval($a + ($movement * $percentage / 100));
5250
}
51+
52+
return floatval($a + ($movement * $percentage / 100));
5353
}
5454
}

tests/PercentageTest.php

+1-7
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,8 @@
55
use Mattiasgeniar\Percentage\Percentage;
66
use PHPUnit\Framework\TestCase;
77

8-
class ExampleTest extends TestCase
8+
class PercentageTest extends TestCase
99
{
10-
/** @test */
11-
public function true_is_true()
12-
{
13-
$this->assertTrue(true);
14-
}
15-
1610
/** @test */
1711
public function it_can_calculate_simple_percentage_differences()
1812
{

0 commit comments

Comments
 (0)