Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93456006
PhortuneCurrencySerializer.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
Thu, Nov 28, 21:58
Size
516 B
Mime Type
text/x-php
Expires
Sat, Nov 30, 21:58 (2 d)
Engine
blob
Format
Raw Data
Handle
22643031
Attached To
rPH Phabricator
PhortuneCurrencySerializer.php
View Options
<?php
final
class
PhortuneCurrencySerializer
extends
PhabricatorLiskSerializer
{
public
function
willReadValue
(
$value
)
{
return
PhortuneCurrency
::
newFromString
(
$value
);
}
public
function
willWriteValue
(
$value
)
{
if
(!(
$value
instanceof
PhortuneCurrency
))
{
throw
new
Exception
(
pht
(
'Trying to save object with a currency column, but the column '
.
'value is not a %s object.'
,
'PhortuneCurrency'
));
}
return
$value
->
serializeForStorage
();
}
}
Event Timeline
Log In to Comment