Skip to content

Commit

Permalink
Slight bug after StyleCI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Källstrand Modig committed Feb 25, 2021
1 parent 74618a6 commit 3964d75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/ExportPostmanCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function handle(): void

$routeNames = explode('.', $routeNames);
$routeNames = array_filter($routeNames, function ($value) {
return ! is_null($value) && $value ! == '';
return ! is_null($value) && $value !== '';
});

$this->buildTree($this->structure, $routeNames, $request);
Expand Down

0 comments on commit 3964d75

Please sign in to comment.