Updating type-hints and some naming conventions

This commit is contained in:
Philipp Holzer 2019-02-04 09:30:48 +01:00
parent 1c51d7d22f
commit d78ac57514
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
9 changed files with 74 additions and 74 deletions

View file

@ -32,7 +32,7 @@ class Config
*
* @param Config\IConfigCache $config The configuration cache
*/
public static function init($config)
public static function init(Config\IConfigCache $config)
{
self::$config = $config;
}
@ -42,7 +42,7 @@ class Config
*
* @param Config\IConfigAdapter $adapter
*/
public static function setAdapter($adapter)
public static function setAdapter(Config\IConfigAdapter $adapter)
{
self::$adapter = $adapter;
}