File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
src/phpDocumentor/GraphViz Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ public function isValueInHtml()
116
116
{
117
117
$ value = $ this ->getValue ();
118
118
119
- return (bool )( isset ($ value [0 ]) && ($ value [0 ] == '< ' ));
119
+ return (isset ($ value [0 ]) && ($ value [0 ] == '< ' ));
120
120
}
121
121
122
122
/**
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class Edge
28
28
/** @var \phpDocumentor\GraphViz\Node Node where to to link */
29
29
protected $ to = null ;
30
30
31
- /** @var \phpDocumentor\GraphViz\Attribute List of attributes for this edge */
31
+ /** @var \phpDocumentor\GraphViz\Attribute[] List of attributes for this edge */
32
32
protected $ attributes = array ();
33
33
34
34
/**
@@ -93,7 +93,7 @@ public function getTo()
93
93
* setX or getX.
94
94
* @param mixed[] $arguments Arguments for the setter, only 1 is expected: value
95
95
*
96
- * @return \phpDocumentor\GraphViz\Attribute[] |\phpDocumentor\GraphViz\Edge|null
96
+ * @return \phpDocumentor\GraphViz\Attribute|\phpDocumentor\GraphViz\Edge|null
97
97
*/
98
98
function __call ($ name , $ arguments )
99
99
{
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ public function isStrict()
187
187
* @param string $name Name of the method including get/set
188
188
* @param mixed[] $arguments The arguments, should be 1: the value
189
189
*
190
- * @return \phpDocumentor\GraphViz\Attribute[] |\phpDocumentor\GraphViz\Graph|null
190
+ * @return \phpDocumentor\GraphViz\Attribute|\phpDocumentor\GraphViz\Graph|null
191
191
*/
192
192
function __call ($ name , $ arguments )
193
193
{
@@ -272,7 +272,7 @@ public function setNode(Node $node)
272
272
*
273
273
* @param string $name Name of the node to find.
274
274
*
275
- * @return \phpDocumentor\GraphViz\Node
275
+ * @return \phpDocumentor\GraphViz\Node|null
276
276
*/
277
277
public function findNode ($ name )
278
278
{
@@ -314,7 +314,7 @@ function __set($name, $value)
314
314
*
315
315
* @see \phpDocumentor\GraphViz\Graph::setNode()
316
316
*
317
- * @return \phpDocumentor\GraphViz\Node
317
+ * @return \phpDocumentor\GraphViz\Node|null
318
318
*/
319
319
function __get ($ name )
320
320
{
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ public function getName()
98
98
* @param string $name Method name; either getX or setX is expected.
99
99
* @param mixed[] $arguments List of arguments; only 1 is expected for setX.
100
100
*
101
- * @return \phpDocumentor\GraphViz\Attribute[] |\phpDocumentor\GraphViz\Node|null
101
+ * @return \phpDocumentor\GraphViz\Attribute|\phpDocumentor\GraphViz\Node|null
102
102
*/
103
103
function __call ($ name , $ arguments )
104
104
{
You can’t perform that action at this time.
0 commit comments