shuleni/unimplemented

NotImplementedException for PHP.

1.0.0 2022-08-10 07:04 UTC

This package is auto-updated.

Last update: 2025-03-10 13:23:09 UTC


README

NotImplementedException for PHP.

Inspired by .NET's NotImplementedException1.

This package exposes a single NotImplementedException class, and nothing else.

NotImplementedException extends the SPL's BadMethodCallException2.

Usage

Usage should be quite straightforward.

<?php

use Shuleni\Unimplemented\NotImplementedException;

function SolveWorldHunger(Universe\Models\Planet $input): Universe\Models\Solution {
  throw new NotImplementedException();
}

Footnotes

  1. https://docs.microsoft.com/en-us/dotnet/api/system.notimplementedexception

  2. https://www.php.net/manual/en/class.badmethodcallexception.php