Skip to content

refactor: cleanup code twice calling #4499

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

ddevsr
Copy link

@ddevsr ddevsr commented Jun 2, 2025

This is:

  • a bugfix
  • a new feature
  • refactoring
  • additional unit tests

Checklist:

  • Changes are covered by unit tests
    • Changes are covered by existing unit tests
    • New unit tests have been added
  • Code style is respected
  • Commit message explains why the change is made (see https://github.com/erlang/otp/wiki/Writing-good-commit-messages)
  • CHANGELOG.md contains a short summary of the change and a link to the pull request if applicable
  • Documentation is updated as necessary

Why this change is needed?

Just refactoring trimming twice.

@@ -608,7 +608,7 @@ public function addSheet(Worksheet $worksheet, ?int $sheetIndex = null, bool $re
*/
public function removeSheetByIndex(int $sheetIndex): void
{
$numSheets = count($this->workSheetCollection);
$numSheets = $this->getSheetCount();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change seems to add a small amount of overhead through an additional function call. What compensatory advantage do you see that would make this worthwhile?

if (strcasecmp($this->workSheetCollection[$i]->getTitle(), trim($worksheetName, "'")) === 0) {
$trimWorksheetName = trim($worksheetName, "'");

for ($i = 0; $i < $this->getSheetCount(); ++$i) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This absolutely adds overhead by moving a function call from outside the loop to inside. It will definitely not be approved.

$trimWorksheetName = trim($worksheetName, "'");

for ($i = 0; $i < $this->getSheetCount(); ++$i) {
if (strcasecmp($this->workSheetCollection[$i]->getTitle(), $trimWorksheetName) === 0) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one, however, does improve things a bit by moving a function call from inside the loop to outside. I would certainly be okay with including this part.

$worksheetCount = $this->getSheetCount();
for ($i = 0; $i < $worksheetCount; ++$i) {

for ($i = 0; $i < $this->getSheetCount(); ++$i) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Once again, you are moving a function call from outside the loop to inside. This part of the change will not be approved.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants