Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94163088
PhutilMissingSymbolException.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
Wed, Dec 4, 09:44
Size
974 B
Mime Type
text/x-php
Expires
Fri, Dec 6, 09:44 (2 d)
Engine
blob
Format
Raw Data
Handle
22747799
Attached To
rPHU libphutil
PhutilMissingSymbolException.php
View Options
<?php
final
class
PhutilMissingSymbolException
extends
Exception
{
public
function
__construct
(
$symbol
,
$type
,
$reason
)
{
parent
::
__construct
(
pht
(
'Failed to load %s "%s".'
.
"
\n\n
"
.
'%s'
.
"
\n\n
"
.
'If you are not a developer, this almost always means that a library '
.
'is out of date. For example, you may have upgraded "phabricator/" '
.
'without upgrading "libphutil/", or vice versa. It might also mean '
.
'that you need to restart Apache or PHP-FPM. Make sure all libraries '
.
'are up to date and all services have been restarted.'
.
"
\n\n
"
.
'If you are a developer and this symbol was recently added or '
.
'moved, your library map may need to be rebuilt. You can rebuild '
.
'the map by running "arc liberate".'
.
"
\n\n
"
.
'For more information, see: https://phurl.io/newclasses'
,
$type
,
$symbol
,
$reason
));
}
}
Event Timeline
Log In to Comment