Skip to content
This repository was archived by the owner on Dec 27, 2023. It is now read-only.

Commit 9274abf

Browse files
committed
Applied patch from ScrutinizerCI
1 parent 42c8de8 commit 9274abf

32 files changed

+897
-897
lines changed

src/AbelianAdditiveGroup.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
/**
66
* Immutable object that represents an element from an abelian additive group
7-
*
7+
*
88
* @author Andreu Correa Casablanca <[email protected]>
99
*/
1010
interface AbelianAdditiveGroup
1111
{
1212
/**
1313
* Returns the element's additive inverse.
14-
*
14+
*
1515
* @return AbelianAdditiveGroup
1616
*/
1717
public function additiveInverse();

src/BigNumber.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,38 @@
44

55
/**
66
* BigNumber Interface
7-
*
7+
*
88
* @author Andreu Correa Casablanca <[email protected]>
99
*/
1010
interface BigNumber
1111
{
1212
/**
1313
* Adds two big numbers
14-
*
14+
*
1515
* @param BigNumber $b
1616
* @return BigNumber
1717
*/
1818
public function add(BigNumber $b);
1919

2020
/**
2121
* Substracts $b from $this
22-
*
22+
*
2323
* @param BigNumber $b
2424
* @return BigNumber
2525
*/
2626
public function sub(BigNumber $b);
2727

2828
/**
2929
* Multiplies two big numbers
30-
*
30+
*
3131
* @param BigNumber $b
3232
* @return BigNumber
3333
*/
3434
public function mul(BigNumber $b);
3535

3636
/**
3737
* Divides $this by $b
38-
*
38+
*
3939
* @param BigNumber $b
4040
* @return BigNumber
4141
*/
@@ -63,14 +63,14 @@ public function isInfinite();
6363

6464
/**
6565
* Says if this object is a "Not a Number"
66-
*
66+
*
6767
* @return boolean
6868
*/
6969
public function isNaN();
7070

7171
/**
7272
* Equality comparison between this object and $b
73-
*
73+
*
7474
* @param BigNumber $b
7575
* @return boolean
7676
*/

0 commit comments

Comments
 (0)