Skip to content

Commit 76927ef

Browse files
committed
Generators/Generator: minor tweak
* Predefine the find/replace values as these don't change within the loop. * Only call `str_replace()` once with arrays for find/replace.
1 parent f9c5f18 commit 76927ef

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

src/Generators/Generator.php

+12-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
* in a standard.
77
*
88
* @author Greg Sherwood <[email protected]>
9+
* @author Juliette Reinders Folmer <[email protected]>
910
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
11+
* @copyright 2024 PHPCSStandards and contributors
1012
* @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
1113
*/
1214

@@ -46,14 +48,18 @@ public function __construct(Ruleset $ruleset)
4648
{
4749
$this->ruleset = $ruleset;
4850

51+
$find = [
52+
DIRECTORY_SEPARATOR.'Sniffs'.DIRECTORY_SEPARATOR,
53+
'Sniff.php',
54+
];
55+
$replace = [
56+
DIRECTORY_SEPARATOR.'Docs'.DIRECTORY_SEPARATOR,
57+
'Standard.xml',
58+
];
59+
4960
foreach ($ruleset->sniffs as $className => $sniffClass) {
5061
$file = Autoload::getLoadedFileName($className);
51-
$docFile = str_replace(
52-
DIRECTORY_SEPARATOR.'Sniffs'.DIRECTORY_SEPARATOR,
53-
DIRECTORY_SEPARATOR.'Docs'.DIRECTORY_SEPARATOR,
54-
$file
55-
);
56-
$docFile = str_replace('Sniff.php', 'Standard.xml', $docFile);
62+
$docFile = str_replace($find, $replace, $file);
5763

5864
if (is_file($docFile) === true) {
5965
$this->docFiles[] = $docFile;

0 commit comments

Comments
 (0)