]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tests/utils/FakeConfigManager.php
Improve SessionManager constructor and tests
[github/shaarli/Shaarli.git] / tests / utils / FakeConfigManager.php
1 <?php
2
3 /**
4 * Fake ConfigManager
5 */
6 class FakeConfigManager
7 {
8 public static function get($key)
9 {
10 return $key;
11 }
12 }