Skip to content

Commit

Permalink
removing empty tabbed line from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasehlert committed Jan 4, 2016
1 parent 45c15bb commit 94e0d99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/LeonardoTeixeira/Pushover/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function push(Message $message, $device = null)
if ($message->hasSound()) {
$postData['sound'] = $message->getSound();
}

if ($message->hasHtml()) {
$postData['html'] = $message->getHtml();
}
Expand Down
6 changes: 3 additions & 3 deletions src/LeonardoTeixeira/Pushover/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function getSound()
{
return $this->sound;
}

public function getHtml()
{
return $this->html;
Expand Down Expand Up @@ -97,7 +97,7 @@ public function setSound($sound)
}
$this->sound = $sound;
}

public function setHtml($html)
{
if ($html)
Expand Down Expand Up @@ -130,7 +130,7 @@ public function hasSound()
{
return !is_null($this->sound);
}

public function hasHtml()
{
return !is_null($this->html);
Expand Down

0 comments on commit 94e0d99

Please sign in to comment.