Skip to content

Commit

Permalink
Code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
barbushin committed Nov 6, 2015
1 parent e5fc652 commit cfd8f0e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/PhpImap/Mailbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,10 @@ protected function disconnect() {

/**
* Sets 'expunge on disconnect' parameter
* @param bool $value
* @param bool $isEnabled
*/
public function setExpungeOnDisconnect($value)
{
$this->expungeOnDisconnect = $value;
public function setExpungeOnDisconnect($isEnabled) {
$this->expungeOnDisconnect = $isEnabled;
}

/**
Expand Down

2 comments on commit cfd8f0e

@norkunas
Copy link
Contributor

Choose a reason for hiding this comment

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

What code style do you follow?

@barbushin
Copy link
Owner Author

Choose a reason for hiding this comment

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

@norkunas see source code.

Please sign in to comment.