diff --git a/src/Config_Command.php b/src/Config_Command.php index 969e1440..dffc80f0 100644 --- a/src/Config_Command.php +++ b/src/Config_Command.php @@ -1039,10 +1039,9 @@ private static function fetch_remote_salts( $insecure = false ) { * * @param string $name * @param string $type - * @param string $type + * @param array $values * @param string $wp_config_file_name Config file name - * @return string The value of the requested constant or variable as defined in the wp-config.php file; if the - * requested constant or variable is not defined then the function will print an error and exit. + * @return mixed|null Original PHP value from wp-config.php or null if not found. */ private function return_value( $name, $type, $values, $wp_config_file_name ) { $results = []; @@ -1181,7 +1180,7 @@ private function parse_separator( $separator ) { * @param $assoc_args * @param $args * - * @return string + * @return mixed */ protected function get_value( $assoc_args, $args ) { $path = $this->get_config_path( $assoc_args );