-
-
Notifications
You must be signed in to change notification settings - Fork 492
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #433 from WordPress-Coding-Standards/develop
0.7.0
- Loading branch information
Showing
17 changed files
with
464 additions
and
319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
184 changes: 0 additions & 184 deletions
184
WordPress/Sniffs/Functions/FunctionDeclarationArgumentSpacingSniff.php
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,13 @@ | |
/** | ||
* WordPress_Sniffs_VIP_SessionVariableUsageSniff | ||
* | ||
* Discourages the use of the session variable | ||
* Discourages the use of the session variable. | ||
* Creating a session writes a file to the server and is unreliable in a multi-server environment. | ||
* | ||
* @category PHP | ||
* @package PHP_CodeSniffer | ||
* @author Shady Sharaf <[email protected]> | ||
* @link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/69 | ||
* @link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/75 | ||
*/ | ||
class WordPress_Sniffs_VIP_SessionVariableUsageSniff extends Generic_Sniffs_PHP_ForbiddenFunctionsSniff | ||
{ | ||
|
Oops, something went wrong.