Skip to content

Commit

Permalink
Remove useless break
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Michot committed Oct 24, 2018
1 parent 23208c9 commit ee22c2f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/IncomingDumpEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,12 @@ private function entryPointDescription($entryPoint)
switch ($entryPoint->type) {
case (EntryType::REQUEST):
return $entryPoint->content['method'].' '.$entryPoint->content['uri'];
break;

case (EntryType::JOB):
return $entryPoint->content['name'];
break;

case (EntryType::COMMAND):
return $entryPoint->content['command'];
break;
}

return '';
Expand Down

0 comments on commit ee22c2f

Please sign in to comment.