@@ -3612,7 +3612,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
3612
3612
### Fixed
3613
3613
- Fixed bug [#584][sq-584] : Squiz.Arrays.ArrayDeclaration sniff gives incorrect NoComma error for multiline string values
3614
3614
- Fixed bug [#589][sq-589] : PEAR.Functions.FunctionCallSignature sniff not checking all function calls
3615
- - Fixed bug [#592][sq-592] : USE statement tokenising can sometimes result in mismatched scopes
3615
+ - Fixed bug [#592][sq-592] : USE statement tokenizing can sometimes result in mismatched scopes
3616
3616
- Fixed bug [#594][sq-594] : Tokenizer issue on closure that returns by reference
3617
3617
- Fixed bug [#595][sq-595] : Colons in CSS selectors within media queries throw false positives
3618
3618
- Thanks to [Klaus Purer][@klausi] for the patch
@@ -5444,7 +5444,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
5444
5444
- Fixed bug [#18633][pear-18633] : CSS Tokenizer doesn't replace T_LIST tokens inside some styles
5445
5445
- Fixed bug [#18657][pear-18657] : anonymous functions wrongly indented
5446
5446
- Fixed bug [#18670][pear-18670] : UpperCaseConstantNameSniff fails on dynamic retrieval of class constant
5447
- - Fixed bug [#18709][pear-18709] : Code sniffer sniffs file if even if it's in --ignore
5447
+ - Fixed bug [#18709][pear-18709] : Code sniffer sniffs file even if it's in --ignore
5448
5448
- Thanks to [Artem Lopata][@biozshock] for the patch
5449
5449
- Fixed bug [#18762][pear-18762] : Incorrect handling of define and constant in UpperCaseConstantNameSniff
5450
5450
- Thanks to [Thomas Baker][pear-bakert] for the patch
@@ -5758,7 +5758,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
5758
5758
- Squiz VariableCommentSniff now ensures the open comment tag is the only content on the first line
5759
5759
- Squiz NonExecutableCodeSniff now warns about empty return statements that are not required
5760
5760
- Removed ForbiddenStylesSniff from Squiz standard
5761
- - It is now in in the MySource standard as BrowserSpecificStylesSniff
5761
+ - It is now in the MySource standard as BrowserSpecificStylesSniff
5762
5762
- New BrowserSpecificStylesSniff ignores files with browser-specific suffixes
5763
5763
- MySource IncludeSystemSniff no longer throws errors when extending the Exception class
5764
5764
- MySource IncludeSystemSniff no longer throws errors for the abstract widget class
@@ -5807,10 +5807,10 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
5807
5807
- You can also use the -s command line argument to see the different types of errors authors are committing
5808
5808
- You can use the -v command line argument to see all authors, even if they have no errors or warnings
5809
5809
- Added a new command line argument --report-width to allow you to set the column width of screen reports
5810
- - Reports wont accept values less than 70 or else they get too small
5810
+ - Reports won't accept values less than 70 or else they get too small
5811
5811
- Can also be set via a config var: phpcs --config-set report_width 100
5812
5812
- You can now get PHP_CodeSniffer to ignore a whole file by adding @codingStandardsIgnoreFile in the content
5813
- - If you put it in the first two lines the file wont even be tokenized, so it will be much quicker
5813
+ - If you put it in the first two lines the file won't even be tokenized, so it will be much quicker
5814
5814
- Reports now print their file lists in alphabetical order
5815
5815
- PEAR FunctionDeclarationSniff now reports error for incorrect closing bracket placement in multi-line definitions
5816
5816
- Added Generic CallTimePassByReferenceSniff to prohibit the passing of variables into functions by reference
@@ -6320,7 +6320,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
6320
6320
- A value of zero (the default) tells PHP_CodeSniffer not to replace tabs with spaces
6321
6321
- You can now change the default report format from "full" to something else
6322
6322
- Run: phpcs --config-set report_format [format]
6323
- - Improved performance by optimising the way the scope map is created during tokenising
6323
+ - Improved performance by optimising the way the scope map is created during tokenizing
6324
6324
- Added new Squiz DisallowInlineIfSniff to disallow the usage of inline IF statements
6325
6325
- Fixed incorrect errors being thrown for nested switches in Squiz SwitchDeclarationSniff
6326
6326
- PEAR FunctionCommentSniff no longer complains about missing comments for @throws tags
@@ -6355,7 +6355,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
6355
6355
- Run: phpcs --config-set show_warnings 0
6356
6356
- If warnings are hidden by default, use the new -w command line argument to override
6357
6357
- Added new command line argument --config-delete to delete a config value and revert to the default
6358
- - Improved overall performance by optimising tokenising and next/prev methods (feature request [#12421][pear-12421])
6358
+ - Improved overall performance by optimising tokenizing and next/prev methods (feature request [#12421][pear-12421])
6359
6359
- Thanks to [Christian Weiske][@cweiske] for the patch
6360
6360
- Added FunctionCallSignatureSniff to Squiz standard
6361
6361
- Added @subpackage support to file and class comment sniffs in PEAR standard (feature request [#12382][pear-12382])
@@ -6518,7 +6518,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
6518
6518
- Added Squiz LowercaseClassKeywordsSniff to ensure all class declaration keywords are lowercase
6519
6519
- Added Squiz LowercaseFunctionKeywordsSniff to ensure all function declaration keywords are lowercase
6520
6520
- Added Squiz LowercasePHPFunctionsSniff to ensure all calls to inbuilt PHP functions are lowercase
6521
- - Added Squiz CastSpacingSniff to ensure cast statements dont contain whitespace
6521
+ - Added Squiz CastSpacingSniff to ensure cast statements don't contain whitespace
6522
6522
- Errors no longer thrown when checking 0 length files with verbosity on
6523
6523
6524
6524
### Fixed
@@ -6583,7 +6583,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
6583
6583
- Errors no longer thrown on __autoload functions in PEAR ValidFunctionNameSniff
6584
6584
- Errors now thrown for __autoload methods in PEAR ValidFunctionNameSniff
6585
6585
- Errors now thrown if constructors or destructors have @return tags in Squiz FunctionCommentSniff
6586
- - Errors now thrown if @throws tags dont start with a capital and end with a full stop in Squiz FunctionCommentSniff
6586
+ - Errors now thrown if @throws tags don't start with a capital and end with a full stop in Squiz FunctionCommentSniff
6587
6587
- Errors now thrown for invalid @var tag values in Squiz VariableCommentSniff
6588
6588
- Errors now thrown for missing doc comment in Squiz VariableCommentSniff
6589
6589
- Errors now thrown for unspaced operators in FOR loop declarations in Squiz OperatorSpacingSniff
@@ -6726,7 +6726,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
6726
6726
- Removed the including of checked files to stop errors caused by parsing them
6727
6727
- Removed the use of reflection so checked files do not have to be included
6728
6728
- Memory usage has been greatly reduced
6729
- - Much faster tokenising and checking times
6729
+ - Much faster tokenizing and checking times
6730
6730
- Reworked the PEAR coding standard sniffs (much faster now)
6731
6731
- Fix some bugs with the PEAR scope indentation standard
6732
6732
- Better checking for installed coding standards
@@ -6736,7 +6736,7 @@ Additionally, thanks to [Alexander Turek][@derrabus] for consulting on the repo
6736
6736
- Added an option to hide warnings from reports
6737
6737
- Added an option to print verbose output (so you know what is going on)
6738
6738
- Reordered command line args to put switches first (although order is not enforced)
6739
- - Switches can now be specified together (eg . php -nv) as well as separately (phpcs -n -v)
6739
+ - Switches can now be specified together (e.g . php -nv) as well as separately (phpcs -n -v)
6740
6740
6741
6741
## 0.0.1 - 2006-07-19
6742
6742
### Added
0 commit comments