Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Remove last line in class
Browse files Browse the repository at this point in the history
between the last method and the curly brace of the class end

e.g.
from:
    public function foo()
    {
        // method body
    }

}

to:
    public function foo()
    {
        // method body
    }
}
  • Loading branch information
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Storage/Adapter/MemoryOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,4 @@ protected function normalizeMemoryLimit($value)

return $value;
}

}

0 comments on commit bc77732

Please sign in to comment.