Skip to content

Commit

Permalink
Fix CS.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Feb 2, 2017
1 parent 31417c2 commit 8942385
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Mailer/Email.php
Expand Up @@ -1846,7 +1846,8 @@ public function message($type = null)
* @param int|null $priority 1 (highest) to 5 (lowest)
* @return $this
*/
public function setPriority($priority) {
public function setPriority($priority)
{
$this->_priority = $priority;

return $this;
Expand All @@ -1857,7 +1858,8 @@ public function setPriority($priority) {
*
* @return int
*/
public function getPriority() {
public function getPriority()
{
return $this->_priority;
}

Expand Down

0 comments on commit 8942385

Please sign in to comment.