Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120097307
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
Tue, Jul 1, 22:23
Size
270 B
Mime Type
text/x-php
Expires
Thu, Jul 3, 22:23 (2 d)
Engine
blob
Format
Raw Data
Handle
27138078
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