shuleni / unimplemented
NotImplementedException for PHP.
1.0.0
2022-08-10 07:04 UTC
README
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
Usage should be quite straightforward.
<?php use Shuleni\Unimplemented\NotImplementedException; function SolveWorldHunger(Universe\Models\Planet $input): Universe\Models\Solution { throw new NotImplementedException(); }