mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 08:52:39 +01:00
Refuse writing to undeclared properties in workflows
Summary: I don't know how to not be strict here plus we (Arcanist developers) don't have access to user's error log. Test Plan: Undeclared `ArcanistDiffWorkflow::$console`, then: $ arc diff Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3607
This commit is contained in:
parent
2871d00f96
commit
219dbe2374
2 changed files with 2 additions and 1 deletions
|
@ -158,6 +158,7 @@ phutil_register_library_map(array(
|
|||
'ArcanistApacheLicenseLinterTestCase' => 'ArcanistArcanistLinterTestCase',
|
||||
'ArcanistArcanistLinterTestCase' => 'ArcanistLinterTestCase',
|
||||
'ArcanistBaseCommitParserTestCase' => 'ArcanistTestCase',
|
||||
'ArcanistBaseWorkflow' => 'Phobject',
|
||||
'ArcanistBranchWorkflow' => 'ArcanistBaseWorkflow',
|
||||
'ArcanistBrowseWorkflow' => 'ArcanistBaseWorkflow',
|
||||
'ArcanistBundleTestCase' => 'ArcanistTestCase',
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
* @group workflow
|
||||
* @stable
|
||||
*/
|
||||
abstract class ArcanistBaseWorkflow {
|
||||
abstract class ArcanistBaseWorkflow extends Phobject {
|
||||
|
||||
const COMMIT_DISABLE = 0;
|
||||
const COMMIT_ALLOW = 1;
|
||||
|
|
Loading…
Reference in a new issue