__call()
__construct()
__toString()
create()
getFrom()
getTo()
$attributes
$from
$to
Class representing an edge (arrow, line).
| author | Mike van Riel |
|---|---|
| copyright | 2010-2011 Mike van Riel / Naenius (http://www.naenius.com) |
| license | MIT |
| link | http://phpdoc.org |
__call(string $name, \mixed[] $arguments) : \phpDocumentor\GraphViz\Attribute[] | \phpDocumentor\GraphViz\Edge | null
Using this method we make sure that we support any attribute without too much hassle. If the name for this method does not start with get or set we return null. Set methods return this graph (fluent interface) whilst get methods return the attribute value.
stringname of the invoked method, expect it to be setX or getX.
\mixed[]Arguments for the setter, only 1 is expected: value
__construct(Node $from, Node $to)
__toString() : string
stringcreate(Node $from, Node $to) : \phpDocumentor\GraphViz\Edge
See the examples for more details.