Use another variable assignment with a combined operator for string concatenations
:eyes: Some source code analysis tools can help to find opportunities for improving software components. :thought_balloon: I propose to increase the usage of combined operators accordingly.
diff --git a/src/DevShop/Command/DevmasterUpgrade.php b/src/DevShop/Command/DevmasterUpgrade.php
index 2ac7a15ef..308b459a1 100644
--- a/src/DevShop/Command/DevmasterUpgrade.php
+++ b/src/DevShop/Command/DevmasterUpgrade.php
@@ -156,7 +156,7 @@ class DevmasterUpgrade extends Command
$number++;
}
$output->writeln("File DOES NOT exists at " . $target_path . '-' . $number);
- $target_path = $target_path . '-' . $number;
+ $target_path .= '-' . $number;
}
$output->writeln('');
This issue has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution!
:crystal_ball: Will the chances grow to adjust the shown assignment statement?
This issue is no longer marked for closure.
This issue has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution!
This issue has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution!
This issue has been closed due to inactivity. If you feel this is in error, please reopen the issue or file a new issue with the relevant details.