Skip to content

Commit adcbdea

Browse files
committed
Capitalize namespaces.
1 parent 3d3e4ba commit adcbdea

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
},
2626
"autoload": {
2727
"psr-4": {
28-
"mcordingley\\LinearAlgebra\\": "src/"
28+
"MCordingley\\LinearAlgebra\\": "src/"
2929
}
3030
},
3131
"autoload-dev": {
3232
"psr-4": {
33-
"mcordingley\\LinearAlgebraTest\\": "tests/"
33+
"MCordingley\\LinearAlgebraTest\\": "tests/"
3434
}
3535
}
3636
}

src/Decomposition/LU.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
declare(strict_types = 1);
44

5-
namespace mcordingley\LinearAlgebra\Decomposition;
5+
namespace MCordingley\LinearAlgebra\Decomposition;
66

7-
use mcordingley\LinearAlgebra\Matrix;
8-
use mcordingley\LinearAlgebra\MatrixException;
7+
use MCordingley\LinearAlgebra\Matrix;
8+
use MCordingley\LinearAlgebra\MatrixException;
99

1010
final class LU
1111
{

src/Decomposition/LUP.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
declare(strict_types = 1);
44

5-
namespace mcordingley\LinearAlgebra\Decomposition;
5+
namespace MCordingley\LinearAlgebra\Decomposition;
66

7-
use mcordingley\LinearAlgebra\Matrix;
8-
use mcordingley\LinearAlgebra\MatrixException;
7+
use MCordingley\LinearAlgebra\Matrix;
8+
use MCordingley\LinearAlgebra\MatrixException;
99

1010
final class LUP
1111
{

src/Matrix.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
declare(strict_types = 1);
44

5-
namespace mcordingley\LinearAlgebra;
5+
namespace MCordingley\LinearAlgebra;
66

7-
use mcordingley\LinearAlgebra\Decomposition\LUP;
7+
use MCordingley\LinearAlgebra\Decomposition\LUP;
88

99
final class Matrix
1010
{

src/MatrixException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace mcordingley\LinearAlgebra;
3+
namespace MCordingley\LinearAlgebra;
44

55
use Exception;
66

tests/Decomposition/LUPTest.php

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

33
declare(strict_types = 1);
44

5-
namespace mcordingley\LinearAlgebraTest;
5+
namespace MCordingley\LinearAlgebraTest;
66

7-
use mcordingley\LinearAlgebra\Decomposition\LUP;
8-
use mcordingley\LinearAlgebra\Matrix;
9-
use mcordingley\LinearAlgebra\MatrixException;
7+
use MCordingley\LinearAlgebra\Decomposition\LUP;
8+
use MCordingley\LinearAlgebra\Matrix;
9+
use MCordingley\LinearAlgebra\MatrixException;
1010
use PHPUnit_Framework_TestCase;
1111

1212
final class LUPTest extends PHPUnit_Framework_TestCase

tests/Decomposition/LUTest.php

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

33
declare(strict_types = 1);
44

5-
namespace mcordingley\LinearAlgebraTest;
5+
namespace MCordingley\LinearAlgebraTest;
66

7-
use mcordingley\LinearAlgebra\Decomposition\LU;
8-
use mcordingley\LinearAlgebra\Matrix;
9-
use mcordingley\LinearAlgebra\MatrixException;
7+
use MCordingley\LinearAlgebra\Decomposition\LU;
8+
use MCordingley\LinearAlgebra\Matrix;
9+
use MCordingley\LinearAlgebra\MatrixException;
1010
use PHPUnit_Framework_TestCase;
1111

1212
final class LUTest extends PHPUnit_Framework_TestCase

tests/MatrixTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
declare(strict_types = 1);
44

5-
namespace mcordingley\LinearAlgebraTest;
5+
namespace MCordingley\LinearAlgebraTest;
66

7-
use mcordingley\LinearAlgebra\Matrix;
8-
use mcordingley\LinearAlgebra\MatrixException;
7+
use MCordingley\LinearAlgebra\Matrix;
8+
use MCordingley\LinearAlgebra\MatrixException;
99
use PHPUnit_Framework_TestCase;
1010

1111
final class MatrixTest extends PHPUnit_Framework_TestCase

0 commit comments

Comments
 (0)