diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2022-02-01 09:23:47 +0000 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2022-02-01 09:23:47 +0000 |
| commit | 12e4592523256ff7a9af6900994299898a8611b9 (patch) | |
| tree | 487e029a497f957c20db419639fe36b904dbc756 /app | |
| parent | 4969b2014b2178337dabff507926055180b30b20 (diff) | |
| download | webtrees-12e4592523256ff7a9af6900994299898a8611b9.tar.gz webtrees-12e4592523256ff7a9af6900994299898a8611b9.tar.bz2 webtrees-12e4592523256ff7a9af6900994299898a8611b9.zip | |
Revert "Add annotations for scrutinizer"
This reverts commit 4969b2014b2178337dabff507926055180b30b20.
Diffstat (limited to 'app')
| -rw-r--r-- | app/CommonMark/CensusTableContinueParser.php | 2 | ||||
| -rw-r--r-- | app/CommonMark/CensusTableStartParser.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/CommonMark/CensusTableContinueParser.php b/app/CommonMark/CensusTableContinueParser.php index 76c2de29e8..ff7c98df50 100644 --- a/app/CommonMark/CensusTableContinueParser.php +++ b/app/CommonMark/CensusTableContinueParser.php @@ -76,7 +76,7 @@ class CensusTableContinueParser extends AbstractBlockContinueParser // Blank line before the suffix is an error. if ($line === '') { - return /** @scrutinizer ignore-call (always returns null) */ BlockContinue::none(); + return BlockContinue::none(); } $cells = explode('|', $line); diff --git a/app/CommonMark/CensusTableStartParser.php b/app/CommonMark/CensusTableStartParser.php index 3d86c76fff..5b5c3a3467 100644 --- a/app/CommonMark/CensusTableStartParser.php +++ b/app/CommonMark/CensusTableStartParser.php @@ -43,6 +43,6 @@ class CensusTableStartParser implements BlockStartParserInterface ->at($cursor); } - return /** @scrutinizer ignore-call (always returns null) */ BlockStart::none(); + return BlockStart::none(); } } |
