mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-10 23:01:04 +01:00
Fix the last remaining (?) continue inside switch
Summary: See <https://discourse.phabricator-community.org/t/error-on-project-creation-or-edition-with-php7-3/2236/>. This is the only remaining case that the linter rule in D19931 detected in libphutil, arcanist, or Phabricator. Test Plan: Ran `arc lint --everything ...` in all three repositories, only hit this one. Reviewers: amckinley Reviewed By: amckinley Differential Revision: https://secure.phabricator.com/D19932
This commit is contained in:
parent
b3faa2874c
commit
e98ee73602
1 changed files with 1 additions and 1 deletions
|
@ -351,7 +351,7 @@ final class PhrictionTransactionEditor
|
|||
switch ($type) {
|
||||
case PhrictionDocumentContentTransaction::TRANSACTIONTYPE:
|
||||
if ($xaction->getMetadataValue('stub:create:phid')) {
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
|
||||
if ($this->getProcessContentVersionError()) {
|
||||
|
|
Loading…
Reference in a new issue