Skip to content

Commit 3b479d6

Browse files
removes $stopOnFailure params from Violations class
1 parent e826a47 commit 3b479d6

File tree

3 files changed

+30
-25
lines changed

3 files changed

+30
-25
lines changed

src/CLI/Runner.php

+19-6
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,23 @@
1010
use Arkitect\Analyzer\Parser;
1111
use Arkitect\ClassSetRules;
1212
use Arkitect\CLI\Progress\Progress;
13+
use Arkitect\Exceptions\FailOnFirstViolationException;
1314
use Arkitect\Rules\ParsingErrors;
1415
use Arkitect\Rules\Violations;
1516
use Symfony\Component\Finder\SplFileInfo;
1617

1718
class Runner
1819
{
19-
/** @var Violations */
20-
private $violations;
20+
private Violations $violations;
2121

22-
/** @var ParsingErrors */
23-
private $parsingErrors;
22+
private ParsingErrors $parsingErrors;
23+
24+
private bool $stopOnFailure;
2425

2526
public function __construct(bool $stopOnFailure = false)
2627
{
27-
$this->violations = new Violations($stopOnFailure);
28+
$this->stopOnFailure = $stopOnFailure;
29+
$this->violations = new Violations();
2830
$this->parsingErrors = new ParsingErrors();
2931
}
3032

@@ -57,6 +59,8 @@ public function check(
5759
): void {
5860
/** @var SplFileInfo $file */
5961
foreach ($classSetRule->getClassSet() as $file) {
62+
$fileViolations = new Violations();
63+
6064
if (!$onlyErrors) {
6165
$progress->startParsingFile($file->getRelativePathname());
6266
}
@@ -71,9 +75,18 @@ public function check(
7175
/** @var ClassDescription $classDescription */
7276
foreach ($fileParser->getClassDescriptions() as $classDescription) {
7377
foreach ($classSetRule->getRules() as $rule) {
74-
$rule->check($classDescription, $violations);
78+
$rule->check($classDescription, $fileViolations);
79+
80+
if ($this->stopOnFailure && $fileViolations->count() > 0) {
81+
$violations->merge($fileViolations);
82+
83+
throw new FailOnFirstViolationException();
84+
}
7585
}
7686
}
87+
88+
$violations->merge($fileViolations);
89+
7790
if (!$onlyErrors) {
7891
$progress->endParsingFile($file->getRelativePathname());
7992
}

src/Rules/Violation.php

+3-6
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,11 @@
66

77
class Violation implements \JsonSerializable
88
{
9-
/** @var string */
10-
private $fqcn;
9+
private string $fqcn;
1110

12-
/** @var int|null */
13-
private $line;
11+
private ?int $line;
1412

15-
/** @var string */
16-
private $error;
13+
private string $error;
1714

1815
public function __construct(string $fqcn, string $error, ?int $line = null)
1916
{

src/Rules/Violations.php

+8-13
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
namespace Arkitect\Rules;
66

77
use Arkitect\CLI\Printer\PrinterFactory;
8-
use Arkitect\Exceptions\FailOnFirstViolationException;
98
use Arkitect\Exceptions\IndexNotFoundException;
109

1110
/**
@@ -16,24 +15,18 @@ class Violations implements \IteratorAggregate, \Countable, \JsonSerializable
1615
/**
1716
* @var Violation[]
1817
*/
19-
private $violations;
18+
private array $violations;
2019

21-
/**
22-
* @var bool
23-
*/
24-
private $stopOnFailure;
25-
26-
public function __construct(bool $stopOnFailure = false)
20+
public function __construct()
2721
{
2822
$this->violations = [];
29-
$this->stopOnFailure = $stopOnFailure;
3023
}
3124

3225
public static function fromJson(string $json): self
3326
{
3427
$json = json_decode($json, true);
3528

36-
$instance = new self($json['stopOnFailure']);
29+
$instance = new self();
3730

3831
$instance->violations = array_map(function (array $json): Violation {
3932
return Violation::fromJson($json);
@@ -45,9 +38,11 @@ public static function fromJson(string $json): self
4538
public function add(Violation $violation): void
4639
{
4740
$this->violations[] = $violation;
48-
if ($this->stopOnFailure) {
49-
throw new FailOnFirstViolationException();
50-
}
41+
}
42+
43+
public function merge(self $other): void
44+
{
45+
$this->violations = array_merge($this->violations, $other->toArray());
5146
}
5247

5348
public function get(int $index): Violation

0 commit comments

Comments
 (0)