1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.lang.php; 5 6 import net.sourceforge.pmd.lang.BaseLanguageModule; 7 8 /** 9 * Language Module for PHP. 10 */ 11 public class PhpLanguageModule extends BaseLanguageModule { 12 13 /** The name. */ 14 public static final String NAME = "PHP: Hypertext Preprocessor"; 15 /** The terse name. */ 16 public static final String TERSE_NAME = "php"; 17 18 /** 19 * Create a new instance of the PHP Language Module. 20 */ 21 public PhpLanguageModule() { 22 super(NAME, "PHP", TERSE_NAME, null, "php", "class"); 23 addVersion("", null, true); 24 } 25 26 }