Skip to content

Commit

Permalink
Decrease error count for sniffer related issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rezonanc-oxid committed Dec 6, 2016
1 parent a28a603 commit 521aa07
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -12,7 +12,7 @@ matrix:
fast_finish: true

# TRAVIS_ERROR_LEVEL = E_ALL & ~E_DEPRECATED & ~E_NOTICE & ~E_STRICT
env: TRAVIS_ERROR_LEVEL=22519 OX_BASE_PATH="$TRAVIS_BUILD_DIR/source/" OXID_ESHOP_CS_THRESHOLD=101
env: TRAVIS_ERROR_LEVEL=22519 OX_BASE_PATH="$TRAVIS_BUILD_DIR/source/" OXID_ESHOP_CS_THRESHOLD=96

services: mysql

Expand Down
4 changes: 2 additions & 2 deletions source/Application/Component/BasketComponent.php
Expand Up @@ -514,8 +514,8 @@ protected function prepareProductInformation($addProductId, $productInfo)
* Add one item to basket. Handle eventual errors.
*
* @param oxBasket $basket
* @param array $itemData
* @param string $errorDestination
* @param array $itemData
* @param string $errorDestination
*
* @return null|oxBasketItem
*/
Expand Down
4 changes: 2 additions & 2 deletions source/Core/Exception/StandardException.php
Expand Up @@ -63,8 +63,8 @@ class StandardException extends \Exception
/**
* Default constructor
*
* @param string $sMessage exception message
* @param integer $iCode exception code
* @param string $sMessage exception message
* @param integer $iCode exception code
* @param \Exception|null $previous previous exception
*/
public function __construct($sMessage = "not set", $iCode = 0, \Exception $previous = null)
Expand Down
1 change: 0 additions & 1 deletion source/Core/ModuleList.php
Expand Up @@ -735,5 +735,4 @@ private function isNamespacedClass($className)
{
return strpos($className, '\\') !== false;
}

}

0 comments on commit 521aa07

Please sign in to comment.