Skip to content

Commit

Permalink
Removing unused @param in Cookie/CookieCryptTrait
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krämer committed Feb 28, 2017
1 parent 906cc7d commit b452e4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/Http/Cookie/CookieCryptTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ protected function _decrypt($values, $mode)
* Decodes and decrypts a single value.
*
* @param string $value The value to decode & decrypt.
* @param string|false $encrypt The encryption cipher to use.
* @return string|array Decoded values.
*/
protected function _decode($value)
Expand Down
8 changes: 4 additions & 4 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
]
]);

Cache::config([
Cache::setConfig([
'_cake_core_' => [
'engine' => 'File',
'prefix' => 'cake_core_',
Expand All @@ -100,14 +100,14 @@
putenv('db_dsn=sqlite:///:memory:');
}

ConnectionManager::config('test', ['url' => getenv('db_dsn')]);
ConnectionManager::config('test_custom_i18n_datasource', ['url' => getenv('db_dsn')]);
ConnectionManager::setConfig('test', ['url' => getenv('db_dsn')]);
ConnectionManager::setConfig('test_custom_i18n_datasource', ['url' => getenv('db_dsn')]);

Configure::write('Session', [
'defaults' => 'php'
]);

Log::config([
Log::setConfig([
// 'queries' => [
// 'className' => 'Console',
// 'stream' => 'php://stderr',
Expand Down

0 comments on commit b452e4c

Please sign in to comment.