Skip to content

Commit

Permalink
Added unit test + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
gsherwood committed Dec 11, 2013
1 parent 577c9cb commit 1a43cf6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ $string = 'Hello'."$there '".'hi';
$string = "My name is 'Greg'";
$string = "Hello"." There"."\n";
$string = "Hello There\f";
$string = "Hello There\b";
$string = "Hello\vThere";
$string = "\x0";
$string = 'Hello '.$there.' Greg';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ public function getErrorList()
5 => 1,
6 => 1,
8 => 2,
13 => 1,
14 => 1,
17 => 1,
15 => 1,
18 => 1,
19 => 1,
);

}//end getErrorList()
Expand Down
1 change: 1 addition & 0 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
-- Installed standards appear when using the -i arg, and can be referenced in rulesets using only their name
-- Set paths by running: phpcs --config-set installed_paths /path/one,/path/two,...
- PSR2 ClassDeclarationSniff now allows a list of extended interfaces to be split across multiple lines
- Squiz DoubleQuoteUsageSniff now allows \b in double quoted strings
- Generic ForbiddenFunctionsSniff now ignores object creation
-- This is a further fix for bug #20100 : incorrect Function mysql() has been deprecated report
- Fixed bug #20136 : Squiz_Sniffs_WhiteSpace_ScopeKeywordSpacingSniff and Traits
Expand Down

0 comments on commit 1a43cf6

Please sign in to comment.