mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-08 16:02:39 +01:00
[Wilds] Fix some minor classtree issues identified by unit tests
Summary: Ref T13098. I eventually got unit tests sort-of-almost running and they caught these two issues. Since the tests don't get very far with these classtree problems, just fix them up now so when `arc unit` actually runs later on it can meaningfully run tests. Test Plan: Ran `arc unit`, after other changes let it run, and saw fewer "class doesn't implement every abstract method" issues. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13098 Differential Revision: https://secure.phabricator.com/D19708
This commit is contained in:
parent
4c4fd6fd23
commit
97651311bd
2 changed files with 5 additions and 2 deletions
|
@ -32,4 +32,8 @@ final class ArcanistWildConfigOption
|
|||
return $value;
|
||||
}
|
||||
|
||||
public function getStorageValueFromValue($value) {
|
||||
return $value;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
<?php
|
||||
|
||||
final class ArcanistFileConfigurationSource
|
||||
extends ArcanistConfigurationSource {
|
||||
extends ArcanistFilesystemConfigurationSource {
|
||||
|
||||
public function getFileKindDisplayName() {
|
||||
return pht('Config File');
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in a new issue