File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
# RedisBundle [ ![ Build Status] ( https://travis-ci.org/M6Web/RedisBundle.png?branch=master )] ( https://travis-ci.org/M6Web/RedisBundle )
2
2
3
- symfony2 Bundle on top of predis
3
+ symfony Bundle on top of predis
4
4
5
5
see [ predis/predis] ( https://github.com/nrk/predis )
6
6
7
7
## features
8
8
9
9
* semantic configuration
10
- * sf2 event dispatcher integration
10
+ * sf event dispatcher integration
11
11
* session handler with redis storage : ``` M6Web\Bundle\RedisBundle\Redis\RedisSessionHandler ```
12
12
* redis adapter for guzzle cache : ``` M6Web\Bundle\RedisBundle\Guzzle\RedisCacheAdapter ```
13
13
* dataCollector for sf2 web profiler toolbar
Original file line number Diff line number Diff line change 13
13
"bin-dir" : " bin"
14
14
},
15
15
"require" : {
16
- "php" : " >=7.1 " ,
16
+ "php" : " ^7.2.5 " ,
17
17
"predis/predis" : " ^1.1.1" ,
18
18
"doctrine/cache" : " ~1.3" ,
19
19
"b1rdex/predis-compressible" : " ^0.3.0"
22
22
"m6web/php-cs-fixer-config" : " ^1.0" ,
23
23
"atoum/atoum" : " @stable" ,
24
24
"m6web/redis-mock" : " @stable" ,
25
- "symfony/symfony" : " ~4.2 " ,
25
+ "symfony/symfony" : " ~5.0 " ,
26
26
"psr/cache" : " ~1.0"
27
27
},
28
28
"autoload" : {
Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ public function __construct()
25
25
/**
26
26
* Collect the data
27
27
*
28
- * @param Request $request The request object
29
- * @param Response $response The response object
30
- * @param \Exception $exception An exception
28
+ * @param Request $request The request object
29
+ * @param Response $response The response object
30
+ * @param \Throwable|null $exception An exception
31
31
*/
32
- public function collect (Request $ request , Response $ response , \ Exception $ exception = null )
32
+ public function collect (Request $ request , Response $ response , ? \ Throwable $ exception = null )
33
33
{
34
34
}
35
35
You can’t perform that action at this time.
0 commit comments