Skip to content

Commit 2a893f5

Browse files
committed
Fix property formatter returning empty
1 parent c83bc3a commit 2a893f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Service/PropertyFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public function displayData(OutputInterface $output, array $data, $property = nu
164164
}
165165
}
166166

167-
if ($data !== null) {
167+
if ($data === null) {
168168
return;
169169
}
170170
if (!is_string($data)) {

0 commit comments

Comments
 (0)