You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

30 lines
503 B

<?php
/**
* Test warnings for PHPCS and
*
* Checkers: php-phpcs
*
* The following comment blurp makes PHPCS really happy :)
*
* PHP Version 5
*
* @category Testcase
* @package Flycheck
* @author Sebastian Wiesner <swiesner@lunaryorn.com>
* @license http://www.gnu.org/licenses/gpl.html GPL-3
* @link https://github.com/flycheck/flycheck
*/
class A
{
private static $FOO = 2;
/** Does nothing useful */
private function bar($baz)
{
$i=FALSE;
}
}
?>