Skip to content
This repository was archived by the owner on Sep 8, 2023. It is now read-only.

Commit 6a1a4da

Browse files
committed
Code formatting
1 parent 7ab3eb7 commit 6a1a4da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Console/MacrosCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ public function handle()
5656

5757
foreach ($classes as $class) {
5858
$reflection = new \ReflectionClass($class);
59-
if ($reflection->hasProperty('macros')) {
60-
$property = $reflection->getProperty('macros');
61-
} else {
59+
if (!$reflection->hasProperty('macros')) {
6260
continue;
6361
}
62+
63+
$property = $reflection->getProperty('macros');
6464
$property->setAccessible(true);
6565
$macros = $property->getValue();
6666

0 commit comments

Comments
 (0)