File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 17951795/**
17961796 * Enable caching of the app config values.
17971797 * If enabled the app config will be cached locally for a short TTL,
1798- * reducing database load significatly on larger setups.
1798+ * reducing database load significantly on larger setups.
17991799 *
18001800 * Defaults to ``true``
18011801 */
Original file line number Diff line number Diff line change @@ -864,7 +864,7 @@ private function setTypedValue(
864864 && ($ type | self ::VALUE_SENSITIVE ) !== ($ currType | self ::VALUE_SENSITIVE )) {
865865 try {
866866 $ currType = $ this ->convertTypeToString ($ currType );
867- $ this ->convertTypeToString ($ type );
867+ $ type = $ this ->convertTypeToString ($ type );
868868 } catch (AppConfigIncorrectTypeException ) {
869869 // can be ignored, this was just needed for a better exception message.
870870 }
Original file line number Diff line number Diff line change @@ -128,7 +128,6 @@ protected function getGlobalPrefix(): string {
128128 * Override the global prefix for a specific closure.
129129 * This should only be used internally for bootstrapping purpose!
130130 *
131- * @param string $globalPrefix - The prefix to use during the closure execution
132131 * @param \Closure $closure - The closure with the cache factory as the first parameter
133132 */
134133 public function withServerVersionPrefix (\Closure $ closure ): void {
You can’t perform that action at this time.
0 commit comments