tasks/ext/phpcpd/PHPCPDTask.php
$Id: PHPCPDTask.php 1340 2011-10-31 09:40:00Z 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.
\PHPCPDTask
Runs PHP Copy & Paste Detector. Checking PHP files for duplicated code.
Refactored original PhpCpdTask provided by Timo Haberkern timo.haberkern@fantastic-bits.de
- Parent(s)
- \Task < \ProjectComponent
- Author
- Benjamin Schultz
- Version
- $Id: PHPCPDTask.php 1340 2011-10-31 09:40:00Z 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<PHPCPDFormatterElement>
$_formatters= 'array()'
Formatter elements.
array()Details- Type
- \array<PHPCPDFormatterElement>

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

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

createFormatter(
)
:
\PHPCPDFormatterElementCreate object for nested formatter element.
| Type | Description |
|---|---|
| \PHPCPDFormatterElement |

init(
)
:
voidLoad the necessary environment for running PHPCPD.
| Exception | Description |
|---|---|
| \BuildException | - if the phpcpd 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. |

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

setFormat(
string $format
)
:
voidSets the output format
| Name | Type | Description |
|---|---|---|
| $format | string | Format of the report |

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. |

setMinLines(
integer $minLines
)
:
voidSets the minimum number of identical lines (default: 5).
| Name | Type | Description |
|---|---|---|
| $minLines | integer | Minimum number of identical lines |

setMinTokens(
integer $minTokens
)
:
voidSets the minimum number of identical tokens (default: 70).
| Name | Type | Description |
|---|---|---|
| $minTokens | integer | Minimum number of identical tokens |

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

validateFormatters(
)
:
voidValidates the available formatters
| Exception | Description |
|---|---|
| \BuildException |