-
Notifications
You must be signed in to change notification settings - Fork 70
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 #85 from VBoss/upgrade-nette
Upgrade Nette
- Loading branch information
Showing
44 changed files
with
1,787 additions
and
2,555 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
vendor | ||
composer.lock | ||
tests/php.ini-local |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
parameters: | ||
ignoreErrors: | ||
- '#Result of function usleep \(void\) is used.#' | ||
- '#Constant TEMP_DIR not found.#' | ||
- | ||
message: '#Negated boolean expression is always true.#' | ||
path: *src/Kdyby/Redis/ExclusiveLock.php | ||
|
||
excludes_analyse: | ||
- *src/Kdyby/Redis/DI/ClassAliasMap.php | ||
|
||
reportUnmatchedIgnoredErrors: FALSE |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0"?> | ||
<ruleset name="Kdyby/Console"> | ||
<rule ref="vendor/kdyby/coding-standard/ruleset.xml"/> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
|
||
declare(strict_types = 1); | ||
|
||
return [ | ||
\Kdyby\Redis\ConnectionException::class => \Kdyby\Redis\Exception\ConnectionException::class, | ||
\Kdyby\Redis\Exception::class => \Kdyby\Redis\Exception\IException::class, | ||
\Kdyby\Redis\InvalidArgumentException::class => \Kdyby\Redis\Exception\InvalidArgumentException::class, | ||
\Kdyby\Redis\LockException::class => \Kdyby\Redis\Exception\LockException::class, | ||
\Kdyby\Redis\MissingExtensionException::class => \Kdyby\Redis\Exception\MissingExtensionException::class, | ||
\Kdyby\Redis\RedisClientException::class => \Kdyby\Redis\Exception\RedisClientException::class, | ||
\Kdyby\Redis\SessionHandlerException::class => \Kdyby\Redis\Exception\SessionHandlerException::class, | ||
\Kdyby\Redis\TransactionException::class => \Kdyby\Redis\Exception\TransactionException::class, | ||
]; |
Oops, something went wrong.