mirror of
https://github.com/danog/psalm.git
synced 2024-12-14 02:07:37 +01:00
13 lines
176 B
PHP
13 lines
176 B
PHP
|
<?php
|
||
|
|
||
|
namespace CodeInspector;
|
||
|
|
||
|
class ExceptionHandler
|
||
|
{
|
||
|
public static function accepts(Exception\CodeException $e)
|
||
|
{
|
||
|
throw $e;
|
||
|
//return true;
|
||
|
}
|
||
|
}
|