Skip to content

Commit b70ffaa

Browse files
committed
Updated changelog + coding standards fix
1 parent 6609b10 commit b70ffaa

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CodeSniffer/Reports/Gitblame.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ protected function getBlameContent($filename)
9393
while (empty($fileParts) === false) {
9494
array_pop($fileParts);
9595
$location = implode($fileParts, DIRECTORY_SEPARATOR);
96-
if (is_dir($location . DIRECTORY_SEPARATOR.'.git') === true) {
96+
if (is_dir($location.DIRECTORY_SEPARATOR.'.git') === true) {
9797
$found = true;
9898
break;
9999
}

package.xml

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ http://pear.php.net/dtd/package-2.0.xsd">
3434
-- Thanks to Andy Grunwald for the patch
3535
- Squiz FileCommentSniff now uses tags names inside the error codes for many messages
3636
-- This allows you to exclude specific missing, out of order etc., tags
37+
- Fixed gitblame report not working on Windows
38+
-- Thanks to Rogerio Prado de Jesus
3739
- Fixed an incorrect error in Squiz OperatorSpacingSniff for default values inside a closure definition
3840
- Fixed bug #19691 : SubversionPropertiesSniff fails to find missing properties
3941
-- Thanks to Kevin Winahradsky for the patch

0 commit comments

Comments
 (0)