You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Util/Help.php
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -409,11 +409,11 @@ private function getAllOptions()
409
409
],
410
410
'ignore' => [
411
411
'argument' => '--ignore=<patterns>',
412
-
'description' => 'Ignore files based on a commaseparated list of patterns matching files and/or directories.',
412
+
'description' => 'Ignore files based on a comma-separated list of patterns matching files and/or directories.',
413
413
],
414
414
'extensions' => [
415
415
'argument' => '--extensions=<extensions>',
416
-
'description' => 'Check files with the specified file extensions (commaseparated list). Defaults to php,inc/php,js,css.'."\n"
416
+
'description' => 'Check files with the specified file extensions (comma-separated list). Defaults to php,inc/php,js,css.'."\n"
417
417
.'The type of the file can be specified using: ext/type; e.g. module/php,es/js.',
418
418
],
419
419
'l' => [
@@ -429,11 +429,11 @@ private function getAllOptions()
429
429
],
430
430
'sniffs' => [
431
431
'argument' => '--sniffs=<sniffs>',
432
-
'description' => 'A commaseparated list of sniff codes to limit the scan to. All sniffs must be part of the standard in use.',
432
+
'description' => 'A comma-separated list of sniff codes to limit the scan to. All sniffs must be part of the standard in use.',
433
433
],
434
434
'exclude' => [
435
435
'argument' => '--exclude=<sniffs>',
436
-
'description' => 'A commaseparated list of sniff codes to exclude from the scan. All sniffs must be part of the standard in use.',
436
+
'description' => 'A comma-separated list of sniff codes to exclude from the scan. All sniffs must be part of the standard in use.',
437
437
],
438
438
'blank-line' => ['spacer' => ''],
439
439
@@ -458,19 +458,19 @@ private function getAllOptions()
458
458
],
459
459
'bootstrap' => [
460
460
'argument' => '--bootstrap=<bootstrap>',
461
-
'description' => 'Run the specified, commaseparated, file(s) before processing begins.',
461
+
'description' => 'Run the specified comma-separated file(s) before processing begins.',
462
462
],
463
463
'cache' => [
464
464
'argument' => '--cache[=<cacheFile>]',
465
-
'description' => 'Cache results between runs. Optionally, <cacheFile> can be provided to use a specific file for caching. Otherwise a temporary file is used.',
465
+
'description' => 'Cache results between runs. Optionally, <cacheFile> can be provided to use a specific file for caching. Otherwise, a temporary file is used.',
466
466
],
467
467
'no-cache' => [
468
468
'argument' => '--no-cache',
469
-
'description' => 'Do not cache results between runs (this is the default).',
469
+
'description' => 'Do not cache results between runs (default).',
470
470
],
471
471
'parallel' => [
472
472
'argument' => '--parallel=<processes>',
473
-
'description' => 'How many files should be checked simultaneously. Defaults to 1 (no parallel processing).'."\n"
473
+
'description' => 'The number of files to be checked simultaneously. Defaults to 1 (no parallel processing).'."\n"
474
474
.'If enabled, this option only takes effect if the PHP PCNTL (Process Control) extension is available.',
475
475
],
476
476
'suffix' => [
@@ -511,7 +511,7 @@ private function getAllOptions()
511
511
512
512
'w' => [
513
513
'argument' => '-w',
514
-
'description' => 'Include both warnings and errors (this is the default).',
514
+
'description' => 'Include both warnings and errors (default).',
515
515
],
516
516
'n' => [
517
517
'argument' => '-n',
@@ -545,7 +545,7 @@ private function getAllOptions()
545
545
],
546
546
'no-colors' => [
547
547
'argument' => '--no-colors',
548
-
'description' => 'Do not use colors in screen output (this is the default).',
548
+
'description' => 'Do not use colors in screen output (default).',
549
549
],
550
550
'p' => [
551
551
'argument' => '-p',
@@ -557,14 +557,14 @@ private function getAllOptions()
557
557
],
558
558
'm' => [
559
559
'argument' => '-m',
560
-
'description' => 'Stop error messages from being recorded. This saves a lot of memory, but stops many reports from being used.',
560
+
'description' => 'Stop error messages from being recorded. This saves a lot of memory but stops many reports from being used.',
561
561
],
562
562
];
563
563
564
564
$options['Configuration Options'] = [
565
565
'encoding' => [
566
566
'argument' => '--encoding=<encoding>',
567
-
'description' => 'The encoding of the files being checked. Defaults to utf-8.',
567
+
'description' => 'The encoding of the files being checked. Defaults to "utf-8".',
0 commit comments