Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102566582
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
Sat, Feb 22, 01:42
Size
270 B
Mime Type
text/x-php
Expires
Mon, Feb 24, 01:42 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24365332
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