Skip to content

Commit ac3dbb3

Browse files
committed
Fix duplicate namespaces
1 parent f8fc25d commit ac3dbb3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/PHPStan/Rules/Properties/data/abstract-hooked-properties-in-class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace NonAbstractHookedPropertiesInAbstractClass;
3+
namespace AbstractHookedPropertiesInClass;
44

55
class AbstractPerson
66
{

tests/PHPStan/Rules/Properties/data/abstract-non-hooked-properties-in-abstract-class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace NonAbstractHookedPropertiesInAbstractClass;
3+
namespace AbstractNonHookedPropertiesInAbstractClass;
44

55
abstract class AbstractPerson
66
{

tests/PHPStan/Rules/Properties/data/hooked-properties-in-class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace NonAbstractHookedPropertiesInClass;
3+
namespace HookedPropertiesInClass;
44

55
class Person
66
{

0 commit comments

Comments
 (0)