PHP does not have a built-in NotImplementedException however you’re welcome to create your own. I suppose BadMethodCallException comes close which would be a decent candidate for extension
class NotImplementedException extends BadMethodCallException
{}
… and in your method
public function notImplementedMethod()
{
throw new NotImplementedException();
}
You can also very simply do something like this
throw new Exception('Not implemented');