Skip to content

Commit

Permalink
Fix an early call to return.
Browse files Browse the repository at this point in the history
This would have been preventing multiple controller maps from being
processed properly.
  • Loading branch information
trq committed Nov 13, 2012
1 parent cc42135 commit 30f1584
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/Proem/Dispatch/Standard.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -277,9 +277,7 @@ public function isDispatchable()
return true; return true;
} }
} }
} catch (\ReflectionException $e) { } catch (\ReflectionException $e) {}
return false;
}
} }


return false; return false;
Expand Down

0 comments on commit 30f1584

Please sign in to comment.