Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/infrastructure/export/field/PhabricatorIDExportField.php
12241 views
1
<?php
2
3
final class PhabricatorIDExportField
4
extends PhabricatorExportField {
5
6
public function getNaturalValue($value) {
7
return (int)$value;
8
}
9
10
public function getCharacterWidth() {
11
return 12;
12
}
13
14
}
15
16