nubium/this-should-never-happen-exception

扩展这个异常并在任何意外情况发生时抛出。

v1.0 2018-03-27 10:16 UTC

This package is not auto-updated.

Last update: 2024-09-26 17:39:40 UTC


README

Build Status Downloads this Month Latest Stable Version License

每个应用程序中都应该有永远不会发生的事情 :)

使用方法

switch ($oneOrTwoNothingElse) {
    case 1:
        echo 1;
        break;
    case 2:
        echo 2;
        break;
    default:
        throw new ThisShouldNeverHappenException('Unexpected input.');
}