File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
Config::shouldReceive ('get ' )->with ('app.fallback_locale ' )->andReturn ('en ' );
10
10
Config::shouldReceive ('get ' )->with ('database.default ' )->andReturn ('test ' );
11
11
Config::shouldReceive ('get ' )->with ('database.connections.test ' )->andReturn (null );
12
- Config::shouldReceive ('get ' )->with ('logging.channels.deprecations ' )->andReturn (null );
12
+ Config::shouldReceive ('get ' )->with ('logging.channels.deprecations ' )->andReturn ([] );
13
13
Config::shouldReceive ('get ' )->once ()->with ('cookieconsent.cookie.name ' )->andReturn ('foo_consent ' );
14
14
Config::shouldReceive ('get ' )->once ()->with ('cookieconsent.cookie.duration ' )->andReturn (365 * 24 * 60 );
15
15
26
26
Config::shouldReceive ('get ' )->with ('app.fallback_locale ' )->andReturn ('en ' );
27
27
Config::shouldReceive ('get ' )->with ('database.default ' )->andReturn ('test ' );
28
28
Config::shouldReceive ('get ' )->with ('database.connections.test ' )->andReturn (null );
29
- Config::shouldReceive ('get ' )->with ('logging.channels.deprecations ' )->andReturn (null );
29
+ Config::shouldReceive ('get ' )->with ('logging.channels.deprecations ' )->andReturn ([] );
30
30
Config::shouldReceive ('get ' )->once ()->with ('session.cookie ' )->andReturn ('foo_session ' );
31
31
Config::shouldReceive ('get ' )->once ()->with ('session.lifetime ' )->andReturn (120 );
32
32
43
43
Config::shouldReceive ('get ' )->with ('app.fallback_locale ' )->andReturn ('en ' );
44
44
Config::shouldReceive ('get ' )->with ('database.default ' )->andReturn ('test ' );
45
45
Config::shouldReceive ('get ' )->with ('database.connections.test ' )->andReturn (null );
46
- Config::shouldReceive ('get ' )->with ('logging.channels.deprecations ' )->andReturn (null );
46
+ Config::shouldReceive ('get ' )->with ('logging.channels.deprecations ' )->andReturn ([] );
47
47
Config::shouldReceive ('get ' )->once ()->with ('session.lifetime ' )->andReturn (120 );
48
48
49
49
$ category = new EssentialCookiesCategory ('foo ' );
You can’t perform that action at this time.
0 commit comments