mirror of
https://github.com/danog/psalm.git
synced 2024-12-15 02:47:02 +01:00
04ef20da1f
* Oputput error message when asked to fix non-fixable issue * Document ability to fix function PossiblyUndefinedGlobalVariable * Add --issues=all option to fix all possible issues * Add --list-supported-issues option to psalter * Fix psalm issues * Add newline to end of psalter help output * Adjust messages output from psalter * Use fwrite(STDERR, instead of die( for issue list related errors in psalter * Restore missing exits in psalter
9 lines
96 B
PHP
9 lines
96 B
PHP
<?php
|
|
|
|
namespace Psalm\Exception;
|
|
|
|
class UnsupportedIssueToFixException extends \Exception
|
|
{
|
|
|
|
}
|