Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99405726
PhabricatorStringExportField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jan 24, 06:47
Size
270 B
Mime Type
text/x-php
Expires
Sun, Jan 26, 06:47 (2 d)
Engine
blob
Format
Raw Data
Handle
23790893
Attached To
rPH Phabricator
PhabricatorStringExportField.php
View Options
<?php
final
class
PhabricatorStringExportField
extends
PhabricatorExportField
{
public
function
getNaturalValue
(
$value
)
{
if
(
$value
===
null
)
{
return
$value
;
}
if
(!
strlen
(
$value
))
{
return
null
;
}
return
(
string
)
$value
;
}
}
Event Timeline
Log In to Comment