5 |
aurelien |
1 |
@echo off
|
|
|
2 |
REM PHP_CodeSniffer tokenises PHP code and detects violations of a
|
|
|
3 |
REM defined set of coding standards.
|
|
|
4 |
REM
|
|
|
5 |
REM PHP version 5
|
|
|
6 |
REM
|
|
|
7 |
REM @category PHP
|
|
|
8 |
REM @package PHP_CodeSniffer
|
|
|
9 |
REM @author Greg Sherwood <gsherwood@squiz.net>
|
|
|
10 |
REM @author Marc McIntyre <mmcintyre@squiz.net>
|
|
|
11 |
REM @copyright 2006 Squiz Pty Ltd (ABN 77 084 670 600)
|
|
|
12 |
REM @license http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
|
|
|
13 |
REM @version CVS: $Id: phpcs.bat,v 1.3 2007/11/04 22:02:16 squiz Exp $
|
|
|
14 |
REM @link http://pear.php.net/package/PHP_CodeSniffer
|
|
|
15 |
|
|
|
16 |
"@php_bin@" -d auto_append_file="" -d auto_prepend_file="" -d include_path="@php_dir@" "@bin_dir@\phpcs" %*
|