@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
at upstream/main 13 lines 262 B view raw
1<?php 2 3final class ConduitMethodDoesNotExistException 4 extends ConduitMethodNotFoundException { 5 6 public function __construct($method_name) { 7 parent::__construct( 8 pht( 9 'Conduit API method "%s" does not exist.', 10 $method_name)); 11 } 12 13}