ralfmaxxx / phpmd_variable_lifetime
There is no license information available for the latest version (0.1.0) of this package.
Deliver PHPMD variable lifetime rule
Package info
github.com/ralfmaxxx/phpmd_variable_lifetime
pkg:composer/ralfmaxxx/phpmd_variable_lifetime
0.1.0
2016-07-13 20:18 UTC
Requires
- phpmd/phpmd: ^2.4
This package is auto-updated.
Last update: 2026-02-21 23:36:04 UTC
README
PHPMD Variable Lifetime Rule
How to use?
composer require "ralfmaxxx/phpmd_variable_lifetime"
And append this rule to phpmd.xml using definition file rulesets/design.xml:
<rule ref="{path}/rulesets/design.xml/LocalVariableLifetime" />
You can additionally set allowed lines interval parameter:
<rule ref="{path}/rulesets/design.xml/LocalVariableLifetime">
<properties>
<property name="allowedLinesInterval" value="5"/>
</properties>
</rule>