Appendix D. Core Types

This appendix contains a reference of the system data types contained in Phing.

D.1 Excludes

Specifies a set of files, classes or methods to be excluded from processing.

This element has no attributes, only nested tags

D.1.1 Nested tags

  • File

  • Class

  • Method

Table D.1:  Common attributes for all File, Class, Method tags

NameTypeDescriptionDefaultRequired
nameStringThe name of the class, method or file. This may also be specified as a pattern.n/aYes

D.1.2 Usage Examples

<coverage-threshold
    perProject="50"
    perClass="60"
    perMethod="70"/>
    <excludes>
        <file>**/*Processor.php</file>
        <class>Model_Filter_Windows</class>
        <method>Model_System::execute()</method>
    </excludes>