Skip to content

Commit 352cc1b

Browse files
committed
styleci fix
1 parent 69d0221 commit 352cc1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/ExportPostmanCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ protected function handleEdgeCases(array $messages): array
432432
*/
433433
protected function safelyStringifyClassBasedRule($probableRule): string
434434
{
435-
if (!is_object($probableRule) || is_subclass_of($probableRule, Rule::class) || !method_exists($probableRule, '__toString')) {
435+
if (! is_object($probableRule) || is_subclass_of($probableRule, Rule::class) || ! method_exists($probableRule, '__toString')) {
436436
return '';
437437
}
438438

0 commit comments

Comments
 (0)