Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101559592
PhutilDirectedScalarGraph.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, Feb 11, 14:02
Size
400 B
Mime Type
text/x-php
Expires
Thu, Feb 13, 14:02 (1 d, 19 h)
Engine
blob
Format
Raw Data
Handle
24184953
Attached To
rPHU libphutil
PhutilDirectedScalarGraph.php
View Options
<?php
/**
* Concrete subclass of @{class:AbstractDirectedGraph} which can not load any
* data from external sources.
*/
final
class
PhutilDirectedScalarGraph
extends
AbstractDirectedGraph
{
protected
function
loadEdges
(
array
$nodes
)
{
throw
new
Exception
(
"PhutilDirectedScalarGraph can not load additional nodes at runtime. "
.
"Tried to load: "
.
implode
(
', '
,
$nodes
));
}
}
Event Timeline
Log In to Comment