tasks/ext/phpmd/PHPMDTask.php
$Id: PHPMDTask.php 1394 2011-12-21 19:50:14Z mrook $
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This software consists of voluntary contributions made by many individuals and is licensed under the LGPL. For more information please see http://phing.info.
\PHPMDTask
Runs PHP Mess Detector. Checking PHP files for several potential problems based on rulesets.
- Parent(s)
- \Task < \ProjectComponent
- Author
- Benjamin Schultz
- Since
- 2.4.1
- Version
- $Id: PHPMDTask.php 1394 2011-12-21 19:50:14Z mrook $
Properties

array
$allowedFileExtensions= 'array('php')'
List of valid file extensions for analyzed files.
array('php')Details- Type
- array

\PhingFile
$file= 'null'
A php source code filename or directory
nullDetails- Type
- \PhingFile

\array<FileSet>
$filesets= 'array()'
All fileset objects assigned to this task
array()Details- Type
- \array<FileSet>

\array<PHPMDFormatterElement>
$formatters= 'array()'
Formatter elements.
array()Details- Type
- \array<PHPMDFormatterElement>

array
$ignorePatterns= 'array('.git''
List of exclude directory patterns.
array('.git'Details- Type
- array

integer
$minimumPriority= '0'
The minimum priority for rules to load.
0Details- Type
- integer
Methods

createFileSet(
)
:
\FileSetNested creator, adds a set of files (nested fileset attribute).
| Type | Description |
|---|---|
| \FileSet | The created fileset object |

createFormatter(
)
:
\PHPMDFormatterElementCreate object for nested formatter element.
| Type | Description |
|---|---|
| \PHPMDFormatterElement |

main(
)
:
voidExecutes PHPMD against PhingFile or a FileSet
| Exception | Description |
|---|---|
| \BuildException | - if the phpmd classes can't be loaded. |

setAllowedFileExtensions(
string $fileExtensions
)
:
voidSets a list of filename extensions for valid php source code files.
| Name | Type | Description |
|---|---|---|
| $fileExtensions | string | List of valid file extensions without leading dot. |

setFile(
\PhingFile $file
)
:
voidSet the input source file or directory.
| Name | Type | Description |
|---|---|---|
| $file | \PhingFile | The input source file or directory. |

setIgnorePatterns(
string $ignorePatterns
)
:
voidSets a list of ignore patterns that is used to exclude directories from the source analysis.
| Name | Type | Description |
|---|---|---|
| $ignorePatterns | string | List of ignore patterns. |

setMinimumPriority(
integer $minimumPriority
)
:
voidSets the minimum rule priority.
| Name | Type | Description |
|---|---|---|
| $minimumPriority | integer | Minimum rule priority. |

setRulesets(
string $ruleSetFileNames
)
:
voidSets the rule-sets.
| Name | Type | Description |
|---|---|---|
| $ruleSetFileNames | string | Comma-separated string of rule-set filenames or identifier. |