메소드 |
설명 |
|
addProperty ( phpmd\Rule $rule, SimpleXMLElement $node ) : void |
Adds an additional property to the given $rule instance. |
|
createRuleSetFileName ( string $ruleSetOrFileName ) : string |
This method creates the filename for a rule-set identifier or it returns
the input when it is already a filename. |
|
getPropertyValue ( SimpleXMLElement $propertyNode ) : string |
Returns the value of a property node. This value can be expressed in
two different notations. First version is an attribute named value
and the second valid notation is a child element named value that
contains the value as character data. |
|
isIncluded ( phpmd\Rule $rule, SimpleXMLElement $ruleSetNode ) : boolean |
Checks if the given rule is included/not excluded by the given rule-set
reference node. |
|
listRuleSetsInDirectory ( string $directory ) : array(string) |
Lists available rule-set identifiers in given directory. |
|
parsePropertiesNode ( phpmd\Rule $rule, SimpleXMLElement $propertiesNode ) : void |
This method parses a xml properties structure and adds all found properties
to the given $rule object. |
|
parseRuleNode ( phpmd\RuleSet $ruleSet, SimpleXMLElement $node ) : void |
This method parses a single rule xml node. Bases on the structure of the
xml node this method delegates the parsing process to another method in
this class. |
|
parseRuleReferenceNode ( phpmd\RuleSet $ruleSet, SimpleXMLElement $ruleNode ) : void |
This method parses a single rule that was included from a different
rule-set. |
|
parseRuleSetNode ( string $fileName ) : PHPMD\RuleSet |
This method parses the rule-set definition in the given file. |
|
parseRuleSetReference ( SimpleXMLElement $ruleSetNode ) : PHPMD\RuleSet |
Parses a rule-set xml file referenced by the given rule-set xml element. |
|
parseRuleSetReferenceNode ( phpmd\RuleSet $ruleSet, SimpleXMLElement $ruleSetNode ) : void |
This method parses a complete rule set that was includes a reference in
the currently parsed ruleset. |
|
parseSingleRuleNode ( phpmd\RuleSet $ruleSet, SimpleXMLElement $ruleNode ) : void |
This method will create a single rule instance and add it to the given
{@link \PHPMD\RuleSet} object. |
|