Skip to content

Commit 78e1980

Browse files
committed
Fix CS
1 parent b91e101 commit 78e1980

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

src/Exception/CurrencyMismatchException.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Money\Exception;
46

57
final class CurrencyMismatchException extends InvalidArgumentException

src/Exception/DivisionByZeroException.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Money\Exception;
46

57
final class DivisionByZeroException extends InvalidArgumentException

src/Exception/ModuloByZeroException.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Money\Exception;
46

57
final class ModuloByZeroException extends InvalidArgumentException

0 commit comments

Comments
 (0)