Skip to content

Commit f79ecc8

Browse files
authored
Fix typos (#506)
1 parent 8ce26ae commit f79ecc8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

rules-tests/CodeQuality/Rector/Class_/NarrowUnusedSetUpDefinedPropertyRector/Fixture/skip_static_property.php.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Rector\PHPUnit\Tests\CodeQuality\Rector\Class_\NarrowUnusedSetUpDefine
55
use PHPUnit\Framework\TestCase;
66
use Rector\PHPUnit\Tests\CodeQuality\Rector\Class_\NarrowUnusedSetUpDefinedPropertyRector\Source\SomeType;
77

8-
final class SkipStaticPrpoerty extends TestCase
8+
final class SkipStaticProperty extends TestCase
99
{
1010
private static SomeType $someMock;
1111

rules-tests/CodeQuality/Rector/MethodCall/AssertInstanceOfComparisonRector/Fixture/fixture.php.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace Rector\PHPUnit\Tests\CodeQuality\Rector\MethodCall\AssertInstanceOfCom
44

55
use Rector\PHPUnit\Tests\CodeQuality\Rector\MethodCall\AssertInstanceOfComparisonRector\Fixture\Foo;
66

7-
final class MyOfComparissonTest extends \PHPUnit\Framework\TestCase
7+
final class MyOfComparisonTest extends \PHPUnit\Framework\TestCase
88
{
99
public function test()
1010
{
@@ -25,7 +25,7 @@ namespace Rector\PHPUnit\Tests\CodeQuality\Rector\MethodCall\AssertInstanceOfCom
2525

2626
use Rector\PHPUnit\Tests\CodeQuality\Rector\MethodCall\AssertInstanceOfComparisonRector\Fixture\Foo;
2727

28-
final class MyOfComparissonTest extends \PHPUnit\Framework\TestCase
28+
final class MyOfComparisonTest extends \PHPUnit\Framework\TestCase
2929
{
3030
public function test()
3131
{

rules/CodeQuality/NodeFactory/NestedClosureAssertFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function create(MethodCall $assertMethodCall, int $assertKey): array
3333
if ($callableFirstArg->value instanceof ArrowFunction) {
3434
$arrowFunction = $callableFirstArg->value;
3535
if ($arrowFunction->expr instanceof Identical) {
36-
// unwrap closure arrow function to direct assert as more readalbe
36+
// unwrap closure arrow function to direct assert as more readable
3737
$identical = $arrowFunction->expr;
3838

3939
if ($identical->left instanceof Variable) {

0 commit comments

Comments
 (0)