Skip to content

Commit aac16f3

Browse files
committed
Phpstan
1 parent 6fd508e commit aac16f3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/IntegralResult.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace Mathematicator\Integral;
66

77

8-
use Mathematicator\Calculator\Step;
8+
use Mathematicator\Engine\Step;
99
use Mathematicator\Tokenizer\Token\IToken;
1010

1111
final class IntegralResult

src/IntegralSolver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
namespace Mathematicator\Integral;
66

77

8-
use Mathematicator\Calculator\Step;
98
use Mathematicator\Engine\MathematicatorException;
109
use Mathematicator\Engine\QueryNormalizer;
10+
use Mathematicator\Engine\Step;
1111
use Mathematicator\Integral\Exception\CanNotSolveException;
1212
use Mathematicator\Integral\Rule\Rule;
1313
use Mathematicator\Integral\Solver\Solver;
@@ -158,7 +158,7 @@ private function explodeToParts(array $tokens): array
158158
$buffering = false;
159159

160160
foreach ($tokens as $token) {
161-
if ($buffer === [] || $buffering === true) { // Start recording
161+
if ($buffer === [] || $buffering === true) { // Start buffering
162162
$buffering = true;
163163
}
164164

0 commit comments

Comments
 (0)