@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1<?php
2
3final class ConduitApplicationNotInstalledException
4 extends ConduitMethodNotFoundException {
5
6 public function __construct(ConduitAPIMethod $method, $application) {
7 parent::__construct(
8 pht(
9 "Method '%s' belongs to application '%s', which is not enabled.",
10 $method->getAPIMethodName(),
11 $application));
12 }
13
14}