NotImplementedException for PHP.
Inspired by .NET's
NotImplementedException
1.
This package exposes a single NotImplementedException
class, and nothing else.
NotImplementedException
extends the SPL's BadMethodCallException
2.
Usage should be quite straightforward.
<?php
use Shuleni\Unimplemented\NotImplementedException;
function SolveWorldHunger(Universe\Models\Planet $input): Universe\Models\Solution {
throw new NotImplementedException();
}