@@ -627,10 +627,10 @@ For the given `{server}`:
627627<a name="remote-health"></a>
628628### Command: `syncops:remote-health`
629629
630- Run a set of **health checks on a remote server** to quickly verify that the environment is in good shape for running
630+ Run a set of **health checks on a remote server** to quickly verify that the environment is in good shape for running
631631your Winter CMS project.
632632
633- This command is intended as a **diagnostic tool** when something feels “off” on a remote server (slow responses,
633+ This command is intended as a **diagnostic tool** when something feels “off” on a remote server (slow responses,
634634deployment issues, unexpected PHP behavior, etc.) and you want a quick, scriptable overview of the system.
635635
636636This command performs the following actions:
@@ -682,16 +682,16 @@ php artisan syncops:remote-health {server} [options]
682682
683683* **Light mode (default)**:
684684
685- * System: uptime, disk usage
686- * PHP: version only
687- * Database: client + version (if database is configured), no connectivity probe
688- * Project: working directory, Git clean/dirty + branch, framework and Winter CMS versions
685+ * System: uptime, disk usage
686+ * PHP: version only
687+ * Database: client + version (if database is configured), no connectivity probe
688+ * Project: working directory, Git clean/dirty + branch, framework and Winter CMS versions
689689
690690* **Full mode (`--full`)** additionally:
691691
692- * Prints full list of PHP modules (`php -m`)
693- * Performs a `SELECT 1` against the configured database using the preferred client (`mariadb` or `mysql`)
694- * Reports database connectivity as **OK** or a warning with the error message
692+ * Prints full list of PHP modules (`php -m`)
693+ * Performs a `SELECT 1` against the configured database using the preferred client (`mariadb` or `mysql`)
694+ * Reports database connectivity as **OK** or a warning with the error message
695695
696696> This command is read-only from the perspective of your project and database.
697697> It does **not** run migrations, modify files, or alter the database — it only inspects and reports.
@@ -730,15 +730,15 @@ You can validate **all** configured servers, or filter the validation to a singl
730730
731731* Reads `config/syncops.php` and inspects each entry under `connections`.
732732* For each server, it performs **static validation**:
733- * Confirms the presence of the `ssh` block and required fields like `ssh.host` and `ssh.username`.
734- * Warns if neither `ssh.password` nor `ssh.key_path` is set.
735- * If `ssh.key_path` is configured, checks if the file exists and is readable.
736- * Confirms that the `project` block exists and that `project.path` is set.
737- * Performs light sanity checks on optional sections like `database` and `permissions`.
733+ * Confirms the presence of the `ssh` block and required fields like `ssh.host` and `ssh.username`.
734+ * Warns if neither `ssh.password` nor `ssh.key_path` is set.
735+ * If `ssh.key_path` is configured, checks if the file exists and is readable.
736+ * Confirms that the `project` block exists and that `project.path` is set.
737+ * Performs light sanity checks on optional sections like `database` and `permissions`.
738738* When the `--connect` flag is used:
739- * For each server that passes static validation, it instantiates a `RemoteExecutor` and calls `connectBoth()`.
740- * Reports a **success** message when SSH connectivity works.
741- * Reports an **error** if connectivity fails (e.g. wrong host, invalid key, firewall).
739+ * For each server that passes static validation, it instantiates a `RemoteExecutor` and calls `connectBoth()`.
740+ * Reports a **success** message when SSH connectivity works.
741+ * Reports an **error** if connectivity fails (e.g. wrong host, invalid key, firewall).
742742* If any configuration errors or connection failures are detected, the command exits with **FAILURE**.
743743* If all checked servers pass, the command exits with **SUCCESS** and prints a summary message.
744744
0 commit comments