Skip to content

Commit ca0eeb5

Browse files
authored
Update JavaArchive.php
1 parent acc482a commit ca0eeb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Core/JavaArchive.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public function __construct(string $jarFile, array $options = [])
110110
if (empty($attribute)) {
111111
continue;
112112
}
113-
if (!strpos($attribute, ':')) {
113+
if (strpos($attribute, ':') === false) {
114114
continue;
115115
}
116116
[$name, $value] = explode(':', $attribute);

0 commit comments

Comments
 (0)