Skip to content

Commit

Permalink
http headers analysis: renamed 'Headers' to 'HTTP headers'
Browse files Browse the repository at this point in the history
  • Loading branch information
janreges committed Dec 20, 2023
1 parent 7cb7005 commit 436e6ea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Crawler/Analysis/HeadersAnalyzer.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class HeadersAnalyzer extends BaseAnalyzer implements Analyzer
const SUPER_TABLE_HEADERS = 'headers';
const SUPER_TABLE_HEADERS_VALUES = 'headers-values';

const ANALYSIS_HEADERS = 'Headers';
const ANALYSIS_HEADERS = 'HTTP headers';

/**
* @var HeaderStats[]
Expand All @@ -43,8 +43,8 @@ public function analyze(): void
// basic info
$superTable = new SuperTable(
self::SUPER_TABLE_HEADERS,
'Headers',
'No headers found.',
'HTTP headers',
'No HTTP headers found.',
[
new SuperTableColumn('header', 'Header', SuperTableColumn::AUTO_WIDTH, null, function (HeaderStats $header) {
return $header->getFormattedHeaderName();
Expand Down Expand Up @@ -116,8 +116,8 @@ public function analyze(): void

$superTable = new SuperTable(
self::SUPER_TABLE_HEADERS_VALUES,
'Header values',
'No headers found.',
'HTTP header values',
'No HTTP headers found.',
[
new SuperTableColumn('header', 'Header'),
new SuperTableColumn('occurrences', 'Occurs', 6),
Expand Down

0 comments on commit 436e6ea

Please sign in to comment.