@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
fork

Configure Feed

Select the types of activity you want to include in your feed.

Utilize `PhutilMethodNotImplementedException`

Summary: Depends on D9992. Utilize the `PhutilMethodNotImplementedException` class.

Test Plan: N/A

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D10000

+20 -16
+2 -2
src/applications/auth/provider/PhabricatorAuthProvider.php
··· 180 180 protected function renderLoginForm( 181 181 AphrontRequest $request, 182 182 $mode) { 183 - throw new Exception('Not implemented!'); 183 + throw new PhutilMethodNotImplementedException(); 184 184 } 185 185 186 186 public function createProviders() { ··· 295 295 } 296 296 297 297 public function getDefaultExternalAccount() { 298 - throw new Exception('Not implemented!'); 298 + throw new PhutilMethodNotImplementedException(); 299 299 } 300 300 301 301 public function getLoginOrder() {
+7 -5
src/applications/differential/render/DifferentialChangesetOneUpRenderer.php
··· 67 67 return null; 68 68 } 69 69 70 - public function renderFileChange($old_file = null, 71 - $new_file = null, 72 - $id = 0, 73 - $vs = 0) { 74 - throw new Exception('Not implemented!'); 70 + public function renderFileChange( 71 + $old_file = null, 72 + $new_file = null, 73 + $id = 0, 74 + $vs = 0) { 75 + 76 + throw new PhutilMethodNotImplementedException(); 75 77 } 76 78 77 79 }
+7 -5
src/applications/differential/render/DifferentialChangesetTestRenderer.php
··· 76 76 } 77 77 78 78 79 - public function renderFileChange($old_file = null, 80 - $new_file = null, 81 - $id = 0, 82 - $vs = 0) { 83 - throw new Exception('Not implemented!'); 79 + public function renderFileChange( 80 + $old_file = null, 81 + $new_file = null, 82 + $id = 0, 83 + $vs = 0) { 84 + 85 + throw new PhutilMethodNotImplementedException(); 84 86 } 85 87 86 88 }
+1 -1
src/applications/phid/type/PhabricatorPHIDType.php
··· 135 135 public function loadNamedObjects( 136 136 PhabricatorObjectQuery $query, 137 137 array $names) { 138 - throw new Exception('Not implemented!'); 138 + throw new PhutilMethodNotImplementedException(); 139 139 } 140 140 141 141
+1 -1
src/applications/search/engine/PhabricatorApplicationSearchEngine.php
··· 244 244 } 245 245 246 246 protected function getApplicationClassName() { 247 - throw new Exception(pht('Not implemented for this SearchEngine yet!')); 247 + throw new PhutilMethodNotImplementedException(); 248 248 } 249 249 250 250
+1 -1
src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
··· 327 327 protected function applyInitialEffects( 328 328 PhabricatorLiskDAO $object, 329 329 array $xactions) { 330 - throw new Exception('Not implemented.'); 330 + throw new PhutilMethodNotImplementedException(); 331 331 } 332 332 333 333 private function applyInternalEffects(
+1 -1
src/applications/transactions/storage/PhabricatorApplicationTransaction.php
··· 76 76 } 77 77 78 78 public function getApplicationTransactionCommentObject() { 79 - throw new Exception('Not implemented!'); 79 + throw new PhutilMethodNotImplementedException(); 80 80 } 81 81 82 82 public function getApplicationTransactionViewObject() {