Removed finally keyword, bringing back 5.4

This commit is contained in:
Joshua Sherman 2014-01-16 17:45:42 -05:00
parent e662b8f2cd
commit 9dadc1c821
2 changed files with 7 additions and 8 deletions

View file

@ -1,6 +1,7 @@
language: php language: php
php: php:
- 5.4
- 5.5 - 5.5
- hhvm - hhvm

View file

@ -379,8 +379,7 @@ class Controller extends Object
{ {
$output = $e->getMessage(); $output = $e->getMessage();
} }
finally
{
echo $output; echo $output;
// Display the Profiler's report if the stars are aligned // Display the Profiler's report if the stars are aligned
@ -389,7 +388,6 @@ class Controller extends Object
Profiler::report(); Profiler::report();
} }
} }
}
// @todo Document me // @todo Document me
private function validateTemplates(&$module, $parent_template) private function validateTemplates(&$module, $parent_template)