Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Command::show_difference( $slug, $difference )
Visually depict the difference between “dictated” and “current”
Contents
Parameters Parameters
-
(array) (Required)
Source Source
File: libraries/lifterlms-cli/src/Commands/Restful/Command.php
private function show_difference( $slug, $difference ) { $this->output_nesting_level = 0; $this->nested_line( $slug . ': ' ); $this->recursively_show_difference( $difference['to'], $difference['from'] ); $this->output_nesting_level = 0; }
Expand full source code Collapse full source code View on GitHub