-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add (optional) logger to log failed token fetch requests (#4)
- Loading branch information
1 parent
cea24be
commit 2bc2e29
Showing
4 changed files
with
45 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,17 @@ | ||
<?xml version="1.0"?> | ||
<ruleset name="MyOnlineStore"> | ||
<description>MyOnlineStore coding standard</description> | ||
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd" | ||
> | ||
<arg value="sp"/> | ||
<arg name="colors"/> | ||
<arg name="extensions" value="php"/> | ||
<arg name="parallel" value="80"/> | ||
|
||
<file>src</file> | ||
<file>./src/</file> | ||
<file>./tests/</file> | ||
|
||
<exclude-pattern>tests/*</exclude-pattern> | ||
|
||
<!-- Include the whole Symfony2 standard --> | ||
<rule ref="vendor/escapestudios/symfony2-coding-standard/Symfony/ruleset.xml"/> | ||
|
||
<rule ref="Symfony"> | ||
<exclude name="Symfony.Commenting.ClassComment.Missing"/> | ||
<exclude name="Symfony.Commenting.FunctionComment.Missing"/> | ||
<exclude name="Symfony.Commenting.License.Warning"/> | ||
<exclude name="Symfony.Functions.Arguments.Invalid"/> | ||
</rule> | ||
|
||
<!-- The soft limit on line length MUST be 120 characters; automated style checkers MUST warn but MUST NOT error at the soft limit. --> | ||
<rule ref="Generic.Files.LineLength"> | ||
<properties> | ||
<property name="lineLimit" value="120"/> | ||
<property name="absoluteLineLimit" value="0"/> | ||
</properties> | ||
<rule ref="vendor/myonlinestore/coding-standard/MyOnlineStore/ruleset.xml"> | ||
<exclude name="Symfony.NamingConventions.ValidClassName.InvalidInterfaceName"/> | ||
<exclude name="Symfony.NamingConventions.ValidClassName.InvalidExceptionName"/> | ||
</rule> | ||
</ruleset> |
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