Файловый менеджер - Редактировать - /home/avadvi5/calendar.aeronextgen.com/davis/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitAssertNewNamesFixer.php
Ðазад
<?php declare(strict_types=1); /* * This file is part of PHP CS Fixer. * * (c) Fabien Potencier <fabien@symfony.com> * Dariusz Rumiński <dariusz.ruminski@gmail.com> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Fixer\PhpUnit; use PhpCsFixer\Fixer\AbstractPhpUnitFixer; use PhpCsFixer\FixerDefinition\CodeSample; use PhpCsFixer\FixerDefinition\FixerDefinition; use PhpCsFixer\FixerDefinition\FixerDefinitionInterface; use PhpCsFixer\Tokenizer\Token; use PhpCsFixer\Tokenizer\Tokens; /** * @author Krzysztof Ciszewski <krzysztof@ciszew.ski> */ final class PhpUnitAssertNewNamesFixer extends AbstractPhpUnitFixer { public function isRisky(): bool { return true; } public function getDefinition(): FixerDefinitionInterface { return new FixerDefinition( 'Rename deprecated PHPUnit assertions like `assertFileNotExists` to new methods like `assertFileDoesNotExist`.', [ new CodeSample( '<?php final class MyTest extends \PHPUnit_Framework_TestCase { public function testSomeTest() { $this->assertFileNotExists("test.php"); $this->assertNotIsWritable("path.php"); } } ' ), ], null, 'Fixer could be risky if one is overriding PHPUnit\'s native methods.' ); } /** * {@inheritdoc} * * Must run after PhpUnitDedicateAssertFixer. */ public function getPriority(): int { return -10; } protected function applyPhpUnitClassFix(Tokens $tokens, int $startIndex, int $endIndex): void { foreach ($this->getPreviousAssertCall($tokens, $startIndex, $endIndex) as $assertCall) { $this->fixAssertNewNames($tokens, $assertCall); } } /** * @param array{ * index: int, * loweredName: string, * openBraceIndex: int, * closeBraceIndex: int, * } $assertCall */ private function fixAssertNewNames(Tokens $tokens, array $assertCall): void { $replacements = [ 'assertnotisreadable' => 'assertIsNotReadable', 'assertnotiswritable' => 'assertIsNotWritable', 'assertdirectorynotexists' => 'assertDirectoryDoesNotExist', 'assertfilenotexists' => 'assertFileDoesNotExist', 'assertdirectorynotisreadable' => 'assertDirectoryIsNotReadable', 'assertdirectorynotiswritable' => 'assertDirectoryIsNotWriteable', 'assertfilenotisreadable' => 'assertFileIsNotReadable', 'assertfilenotiswritable' => 'assertFileIsNotWriteable', 'assertregexp' => 'assertMatchesRegularExpression', 'assertnotregexp' => 'assertDoesNotMatchRegularExpression', ]; $replacement = $replacements[$assertCall['loweredName']] ?? null; if (null === $replacement) { return; } $tokens[$assertCall['index']] = new Token([ T_STRING, $replacement, ]); } }
| ver. 1.1 | |
.
| PHP 8.3.30 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка