Changeset View
Changeset View
Standalone View
Standalone View
src/aphront/httpparametertype/AphrontPHIDListHTTPParameterType.php
| <?php | <?php | ||||
| final class AphrontPHIDListHTTPParameterType | final class AphrontPHIDListHTTPParameterType | ||||
| extends AphrontHTTPParameterType { | extends AphrontListHTTPParameterType { | ||||
| protected function getParameterValue(AphrontRequest $request, $key) { | protected function getParameterValue(AphrontRequest $request, $key) { | ||||
| $type = new AphrontStringListHTTPParameterType(); | $type = new AphrontStringListHTTPParameterType(); | ||||
| return $this->getValueWithType($type, $request, $key); | return $this->getValueWithType($type, $request, $key); | ||||
| } | } | ||||
| protected function getParameterTypeName() { | protected function getParameterTypeName() { | ||||
| return 'list<phid>'; | return 'list<phid>'; | ||||
| Show All 18 Lines | |||||