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

24 lines
450 B
PHP
Raw Normal View History

<?php
namespace CodeInspector;
class ExceptionHandler
{
2016-06-10 00:08:25 +02:00
public static function accepts(Issue\CodeIssue $e)
{
2016-06-10 00:08:25 +02:00
$config = Config::getInstance();
if ($config->excludeIssueInFile(get_class($e), $e->getFileName())) {
return false;
}
if ($config->stop_on_error) {
throw new CodeException($e->getMessage());
}
echo $e->getMessage() . PHP_EOL;
2016-06-17 01:02:29 +02:00
return true;
}
}