Skip to content

Commit 1ab20e1

Browse files
committed
Fix some spelling
1 parent 1c26470 commit 1ab20e1

File tree

2 files changed

+20
-19
lines changed

2 files changed

+20
-19
lines changed

README.md

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -60,22 +60,25 @@ A more in depth guide can be [found on the wiki](https://github.com/exussum12/co
6060
Below is a list of all tools and a breif description
6161

6262
```
63-
--checkstyle Parses a report in checkstyle format
64-
--clover Parses text output in clover (xml) format
65-
--codeclimate Parse codeclimate output
66-
--jacoco Parses xml coverage report produced by Jacoco
67-
--phan Parse the default phan(static analysis) output
68-
--phanJson Parses phan (static analysis) in json format
69-
--phpcpd Parses the text output from phpcpd (Copy Paste Detect)
70-
--phpcs Parses the json report format of phpcs, this mode only reports errors as violations
71-
--phpcsStrict Parses the json report format of phpcs, this mode only reporst errors and warnings as violations
72-
--phpmd Parses the xml report format of phpmd, this mode reports multi line violations once per diff, instead of on each line the violation occurs
73-
--phpmdStrict Parses the xml report format of phpmd, this mode reports multi line violations once per line they occur
74-
--phpmnd Parses the text output of phpmnd (Magic Number Detection)
75-
--phpstan Parses the text output of phpstan
76-
--phpunit Parses text output in clover (xml) format generated with coverage-clover=file.xml
77-
--pylint Parses PyLint output
78-
63+
--buddy Parses buddy (magic number detection) output
64+
--checkstyle Parses a report in checkstyle format
65+
--clover Parses text output in clover (xml) format
66+
--codeclimate Parse codeclimate output
67+
--humbug Parses the json report format of humbug (mutation testing)
68+
--infecton Parses the infection text log format
69+
--jacoco Parses xml coverage report produced by Jacoco
70+
--phan Parse the default phan(static analysis) output
71+
--phanJson Parses phan (static analysis) in json format
72+
--phpcpd Parses the text output from phpcpd (Copy Paste Detect)
73+
--phpcs Parses the json report format of phpcs, this mode only reports errors as violations
74+
--phpcsStrict Parses the json report format of phpcs, this mode reports errors and warnings as violations
75+
--phpmd Parses the xml report format of phpmd, this mode reports multi line violations once per diff, instead of on each line
76+
the violation occurs
77+
--phpmdStrict Parses the xml report format of phpmd, this mode reports multi line violations once per line they occur
78+
--phpmnd Parses the text output of phpmnd (Magic Number Detection)
79+
--phpstan Parses the text output of phpstan
80+
--phpunit Parses text output in clover (xml) format generated with coverage-clover=file.xml
81+
--pylint Parses PyLint output
7982
```
8083

8184

src/PhpCsLoaderStrict.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<?php
22
namespace exussum12\CoverageChecker;
33

4-
use InvalidArgumentException;
5-
64
/**
75
* Class PhpCsLoaderStrict
86
* Used to fail warnings too
@@ -21,6 +19,6 @@ class PhpCsLoaderStrict extends PhpCsLoader
2119
public static function getDescription()
2220
{
2321
return 'Parses the json report format of phpcs, this mode ' .
24-
'only reporst errors and warnings as violations';
22+
'reports errors and warnings as violations';
2523
}
2624
}

0 commit comments

Comments
 (0)