for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class plGraphvizProcessor extends plProcessor
{
private $properties;
$properties
private $output;
$output
private $structure;
$structure
public $options;
public function __construct()
}
public function getInputTypes()
public function getOutputType()
public function process( $input, $type )
private function getClassDefinition( $o )
getClassDefinition()
This check looks for private methods that have been defined, but are not used inside the class.
$o
If this is a false-positive, you can also ignore this issue in your code via the ignore-unused annotation
ignore-unused
private function getClassDefinition( /** @scrutinizer ignore-unused */ $o )
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.
private function getInterfaceDefinition( $o )
getInterfaceDefinition()
private function getInterfaceDefinition( /** @scrutinizer ignore-unused */ $o )
private function getModifierRepresentation( $modifier )
$modifier
private function getModifierRepresentation( /** @scrutinizer ignore-unused */ $modifier )
getModifierRepresentation()
private function getParamRepresentation( $params )
getParamRepresentation()
$params
private function getParamRepresentation( /** @scrutinizer ignore-unused */ $params )
private function getUniqueId( $object )
$object
private function getUniqueId( /** @scrutinizer ignore-unused */ $object )
getUniqueId()
private function createNode( $name, $options )
createNode()
$name
private function createNode( /** @scrutinizer ignore-unused */ $name, $options )
$options
private function createNode( $name, /** @scrutinizer ignore-unused */ $options )
private function createNodeRelation( $node1, $node2, $options )
$node1
private function createNodeRelation( /** @scrutinizer ignore-unused */ $node1, $node2, $options )
private function createNodeRelation( $node1, $node2, /** @scrutinizer ignore-unused */ $options )
$node2
private function createNodeRelation( $node1, /** @scrutinizer ignore-unused */ $node2, $options )
createNodeRelation()
private function createInterfaceLabel( $name, $attributes, $functions )
$attributes
private function createInterfaceLabel( $name, /** @scrutinizer ignore-unused */ $attributes, $functions )
$functions
private function createInterfaceLabel( $name, $attributes, /** @scrutinizer ignore-unused */ $functions )
private function createInterfaceLabel( /** @scrutinizer ignore-unused */ $name, $attributes, $functions )
createInterfaceLabel()
private function createClassLabel( $name, $attributes, $functions )
private function createClassLabel( $name, /** @scrutinizer ignore-unused */ $attributes, $functions )
private function createClassLabel( /** @scrutinizer ignore-unused */ $name, $attributes, $functions )
private function createClassLabel( $name, $attributes, /** @scrutinizer ignore-unused */ $functions )
createClassLabel()