@@ -14,8 +14,8 @@ http://pear.php.net/dtd/package-2.0.xsd">
14
14
15
15
<active >yes</active >
16
16
</lead >
17
- <date >2013-07-25 </date >
18
- <time >14:04 :00</time >
17
+ <date >2013-09-26 </date >
18
+ <time >10:09 :00</time >
19
19
<version >
20
20
<release >1.5.0RC4</release >
21
21
<api >1.5.0RC4</api >
@@ -388,6 +388,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
388
388
<file baseinstalldir =" PHP" name =" LineLengthSniff.php" role =" php" >
389
389
<tasks : replace from =" @package_version@" to =" version" type =" package-info" />
390
390
</file >
391
+ <file baseinstalldir =" PHP" name =" LowercasedFilenameSniff.php" role =" php" >
392
+ <tasks : replace from =" @package_version@" to =" version" type =" package-info" />
393
+ </file >
391
394
<file baseinstalldir =" PHP" name =" OneClassPerFileSniff.php" role =" php" >
392
395
<tasks : replace from =" @package_version@" to =" version" type =" package-info" />
393
396
</file >
@@ -608,6 +611,10 @@ http://pear.php.net/dtd/package-2.0.xsd">
608
611
<file baseinstalldir =" PHP" name =" LineLengthUnitTest.php" role =" test" >
609
612
<tasks : replace from =" @package_version@" to =" version" type =" package-info" />
610
613
</file >
614
+ <file baseinstalldir =" PHP" name =" LowercasedFilenameUnitTest.inc" role =" test" />
615
+ <file baseinstalldir =" PHP" name =" LowercasedFilenameUnitTest.php" role =" test" >
616
+ <tasks : replace from =" @package_version@" to =" version" type =" package-info" />
617
+ </file >
611
618
<file baseinstalldir =" PHP" name =" OneClassPerFileUnitTest.inc" role =" test" />
612
619
<file baseinstalldir =" PHP" name =" OneClassPerFileUnitTest.php" role =" test" >
613
620
<tasks : replace from =" @package_version@" to =" version" type =" package-info" />
@@ -1195,6 +1202,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
1195
1202
</file >
1196
1203
</dir >
1197
1204
<dir name =" Methods" >
1205
+ <file baseinstalldir =" PHP" name =" FunctionCallSignatureSniff.php" role =" php" >
1206
+ <tasks : replace from =" @package_version@" to =" version" type =" package-info" />
1207
+ </file >
1198
1208
<file baseinstalldir =" PHP" name =" MethodDeclarationSniff.php" role =" php" >
1199
1209
<tasks : replace from =" @package_version@" to =" version" type =" package-info" />
1200
1210
</file >
@@ -1244,6 +1254,10 @@ http://pear.php.net/dtd/package-2.0.xsd">
1244
1254
</file >
1245
1255
</dir >
1246
1256
<dir name =" Methods" >
1257
+ <file baseinstalldir =" PHP" name =" FunctionCallSignatureUnitTest.inc" role =" test" />
1258
+ <file baseinstalldir =" PHP" name =" FunctionCallSignatureUnitTest.php" role =" test" >
1259
+ <tasks : replace from =" @package_version@" to =" version" type =" package-info" />
1260
+ </file >
1247
1261
<file baseinstalldir =" PHP" name =" MethodDeclarationUnitTest.inc" role =" test" />
1248
1262
<file baseinstalldir =" PHP" name =" MethodDeclarationUnitTest.php" role =" test" >
1249
1263
<tasks : replace from =" @package_version@" to =" version" type =" package-info" />
@@ -2415,6 +2429,62 @@ http://pear.php.net/dtd/package-2.0.xsd">
2415
2429
-- See CodeSniffer/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php for an example
2416
2430
</notes >
2417
2431
</release >
2432
+ <release >
2433
+ <version >
2434
+ <release >1.4.7</release >
2435
+ <api >1.4.7</api >
2436
+ </version >
2437
+ <stability >
2438
+ <release >stable</release >
2439
+ <api >stable</api >
2440
+ </stability >
2441
+ <date >2013-09-26</date >
2442
+ <license uri =" https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt" >BSD License</license >
2443
+ <notes >
2444
+ - Added report type --report=junit to show the error list in a JUnit compatible format
2445
+ -- Thanks to Oleg Lobach for the contribution
2446
+ - Added support for the PHP 5.4 callable type hint
2447
+ - Fixed problem where some file content could be ignored when checking STDIN
2448
+ - Version information is now printed when installed via composer or run from a Git clone (request #20050)
2449
+ - The CSS tokenizer is now more reliable when encountering 'list' and 'break' strings
2450
+ - Coding standard ignore comments can now appear instead doc blocks as well as inline comments
2451
+ -- Thanks to Stuart Langley for the patch
2452
+ - Generic LineLengthSniff now ignores SVN URL and Head URL comments
2453
+ -- Thanks to Karl DeBisschop for the patch
2454
+ - PEAR MultiLineConditionSniff now has a setting to specify how many spaces code should be indented
2455
+ -- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
2456
+ -- Thanks to Szabolcs Sulik for the patch
2457
+ - PEAR MultiLineAssignmentSniff now has a setting to specify how many spaces code should be indented
2458
+ -- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
2459
+ -- Thanks to Szabolcs Sulik for the patch
2460
+ - PEAR FunctionDeclarationSniff now has a setting to specify how many spaces code should be indented
2461
+ -- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
2462
+ -- Thanks to Szabolcs Sulik for the patch
2463
+ - Squiz SwitchDeclarationSniff now has a setting to specify how many spaces code should be indented
2464
+ -- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
2465
+ -- Thanks to Szabolcs Sulik for the patch
2466
+ - Squiz CSS IndentationSniff now has a setting to specify how many spaces code should be indented
2467
+ -- Default remains at 4; override the 'indent' setting in a ruleset.xml file to change
2468
+ -- Thanks to Hugo Fonseca for the patch
2469
+ - Squiz and MySource File and Function comment sniffs now allow all tags and don't require a particular licence
2470
+ - Squiz LowercaseStyleDefinitionSniff no longer throws errors for class names in nested style definitions
2471
+ - Squiz ClassFileNameSniff no longer throws errors when checking STDIN
2472
+ - Squiz CSS sniffs no longer generate errors for IE filters
2473
+ - Squiz CSS IndentationSniff no longer sees comments as blank lines
2474
+ - Squiz LogicalOperatorSpacingSniff now ignores whitespace at the end of a line
2475
+ - Squiz.Scope.MethodScope.Missing error message now mentions 'visibility' instead of 'scope modifier'
2476
+ -- Thanks to Renat Akhmedyanov for the patch
2477
+ - Added support for the PSR2 multi-line arguments errata
2478
+ - The PSR2 standard no longer throws errors for additional spacing after a type hint
2479
+ - PSR UseDeclarationSniff no longer throws errors for USE statements inside TRAITs
2480
+ - Fixed bug #20026 : Check for multi-line arrays that should be single-line is slightly wrong
2481
+ -- Adds new error message for single-line arrays that end with a comma
2482
+ - Fixed bug #20029 : ForbiddenFunction sniff incorrectly recognizes methods in USE clauses
2483
+ - Fixed bug #20043 : Mis-interpretation of Foo::class
2484
+ - Fixed bug #20044 : PSR1 camelCase check does not ignore leading underscores
2485
+ - Fixed bug #20045 : Errors about indentation for closures with multi-line 'use' in functions
2486
+ </notes >
2487
+ </release >
2418
2488
<release >
2419
2489
<version >
2420
2490
<release >1.4.6</release >
0 commit comments