Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Analyser/Analyser.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php declare(strict_types = 1);


namespace PHPStan\Analyser;

use Closure;
Expand All @@ -21,6 +22,7 @@
final class Analyser
{

// ci-baseline-check
public function __construct(
private FileAnalyser $fileAnalyser,
private RuleRegistry $ruleRegistry,
Expand Down
1 change: 1 addition & 0 deletions src/Rules/MissingTypehintCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
final class MissingTypehintCheck
{

// ci-baseline-check
public const MISSING_ITERABLE_VALUE_TYPE_TIP = 'See: https://phpstan.org/blog/solving-phpstan-no-value-type-specified-in-iterable-type';

private const ITERABLE_GENERIC_CLASS_NAMES = [
Expand Down
Loading