Skip to content

Commit 09151be

Browse files
Fixed failing tests in Github Action
1 parent 5266246 commit 09151be

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/AnnotationLoaderTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,32 +74,32 @@ public function testAttach(): void
7474
'default',
7575
'protected_property',
7676
'private_property',
77+
'mtp_start',
78+
'mtp_end',
79+
'mtp_next',
7780
'priority',
7881
'private',
7982
'protected',
8083
'public_property',
8184
'global_specific_name',
8285
'global_specific_none',
8386
'global_property',
84-
'mtp_start',
85-
'mtp_end',
86-
'mtp_next',
8787
], $names);
8888

8989
$this->assertEquals([
9090
['handler' => ReflectionMethod::class, 'priority' => 24],
9191
['handler' => ReflectionProperty::class, 'priority' => 0],
9292
['handler' => ReflectionProperty::class, 'priority' => 4],
9393
['handler' => ReflectionMethod::class, 'priority' => 0],
94+
['handler' => ReflectionMethod::class, 'priority' => 1],
95+
['handler' => ReflectionMethod::class, 'priority' => 0],
96+
['handler' => ReflectionMethod::class, 'priority' => 0],
9497
['handler' => ReflectionMethod::class, 'priority' => 0],
9598
['handler' => ReflectionMethod::class, 'priority' => 323],
9699
['handler' => ReflectionProperty::class, 'priority' => 0],
97100
['handler' => ReflectionMethod::class, 'priority' => 0],
98101
['handler' => ReflectionMethod::class, 'priority' => 14],
99102
['handler' => ReflectionProperty::class, 'priority' => 0],
100-
['handler' => ReflectionMethod::class, 'priority' => 0],
101-
['handler' => ReflectionMethod::class, 'priority' => 1],
102-
['handler' => ReflectionMethod::class, 'priority' => 0],
103103
], $result);
104104
}
105105

0 commit comments

Comments
 (0)