Skip to content

Commit e0ba897

Browse files
committed
Take protected members private on LUDecomp.
1 parent 2b54be1 commit e0ba897

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LUDecomposition.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
*/
2020
final class LUDecomposition extends Matrix
2121
{
22-
protected $parity = 1; // 1 if the number of row interchanges is even, -1 if it is odd. (used for determinants)
23-
protected $permutations = []; // Stores a vector representation of the row permutations performed on this matrix.
22+
private $parity = 1; // 1 if the number of row interchanges is even, -1 if it is odd. (used for determinants)
23+
private $permutations = []; // Stores a vector representation of the row permutations performed on this matrix.
2424

2525
/**
2626
* @param array $literal The matrix to decompose.

0 commit comments

Comments
 (0)