1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 02:07:37 +01:00
psalm/src/CodeInspector/ExceptionHandler.php

13 lines
176 B
PHP
Raw Normal View History

<?php
namespace CodeInspector;
class ExceptionHandler
{
public static function accepts(Exception\CodeException $e)
{
throw $e;
//return true;
}
}