mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 04:40:26 +00:00
Coding Standards: Fix the Squiz.PHP.DisallowMultipleAssignments violations in wp-admin.
See #47632. git-svn-id: https://develop.svn.wordpress.org/trunk@45583 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -221,7 +221,8 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ( ! ( $stream = ssh2_exec( $this->link, $command ) ) ) {
|
||||
$stream = ssh2_exec( $this->link, $command );
|
||||
if ( ! $stream ) {
|
||||
$this->errors->add(
|
||||
'command',
|
||||
/* translators: %s: command */
|
||||
|
||||
Reference in New Issue
Block a user