1 | <?php |
||
24 | class ConfigFactory |
||
25 | { |
||
26 | |||
27 | /** |
||
28 | * Cached contents of the config files. |
||
29 | * |
||
30 | * @since 0.4.3 |
||
31 | * |
||
32 | * @var array |
||
33 | */ |
||
34 | protected static $configFilesCache = []; |
||
35 | |||
36 | /** |
||
37 | * Create a new ConfigInterface object from a file. |
||
38 | * |
||
39 | * If a comma-separated list of files is provided, they are checked in sequence until the first one could be loaded |
||
40 | * successfully. |
||
41 | * |
||
42 | * @since 0.3.0 |
||
43 | * |
||
44 | * @param string|array $_ List of files. |
||
45 | * |
||
46 | * @return ConfigInterface Instance of a ConfigInterface implementation. |
||
|
|||
47 | */ |
||
48 | 2 | public static function createFromFile($_) |
|
82 | |||
83 | /** |
||
84 | * Create a new ConfigInterface object from an array. |
||
85 | * |
||
86 | * @since 0.3.0 |
||
87 | * |
||
88 | * @param array $array Array with configuration values. |
||
89 | * |
||
90 | * @return ConfigInterface Instance of a ConfigInterface implementation. |
||
91 | */ |
||
92 | 2 | public static function createFromArray(array $array) |
|
102 | |||
103 | /** |
||
104 | * Create a new ConfigInterface object. |
||
105 | * |
||
106 | * Tries to deduce the correct creation method by inspecting the provided arguments. |
||
107 | * |
||
108 | * @since 0.3.0 |
||
109 | * |
||
110 | * @param mixed $_ Array with configuration values. |
||
111 | * |
||
112 | * @return ConfigInterface Instance of a ConfigInterface implementation. |
||
113 | */ |
||
114 | 4 | public static function create($_) |
|
128 | |||
129 | /** |
||
130 | * Get a config file from the config file cache. |
||
131 | * |
||
132 | * @since 0.4.4 |
||
133 | * |
||
134 | * @param string $identifier Identifier to look for in the cache. |
||
135 | * @param mixed $fallback Fallback to use to fill the cache. If $fallback is a callable, it will be executed |
||
136 | * with $identifier as an argument. |
||
137 | * |
||
138 | * @return mixed The latest content of the cache for the given identifier. |
||
139 | */ |
||
140 | 1 | protected static function getFromCache($identifier, $fallback) |
|
150 | } |
||
151 |
This check compares the return type specified in the
@return
annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.