All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.pmd.cpd.PHPLanguage Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
/**
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.cpd;

/**
 * Language implementation for PHP
 */
public class PHPLanguage extends AbstractLanguage {

    /**
     * Creates a new PHP Language instance.
     */
    public PHPLanguage() {
        super("PHP", "php", new PHPTokenizer(), ".php", ".class");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy