codeclimate / codeclimate-phpcodesniffer

Code Climate Engine for PHP Code Sniffer
MIT License
28 stars 23 forks source link

Fix uncatchable exception #45

Closed landrok closed 7 years ago

landrok commented 7 years ago

L124 } catch (Exception $e) { // can't be catched because CodeClimate\PHPMD\Exception does not exist Another way to fix this is: } catch (\Exception $e) {

landrok commented 7 years ago

Inappropriate because no namespace are defined