Skip to content

Commit

Permalink
Merge pull request #4 from talvbansal/analysis-2QGWlA
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
talvbansal authored Dec 9, 2019
2 parents 11e3d94 + 6908507 commit 89927d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/MsTeamsMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function title($title) : self

public function content($content) : self
{
if(!empty($content)) {
if (! empty($content)) {
$this->payload['text'] = $content;
}

Expand All @@ -46,7 +46,7 @@ public function content($content) : self

public function code($content) : self
{
if(!empty($content)) {
if (! empty($content)) {
$this->payload['code'][] = $content;
}

Expand All @@ -69,7 +69,7 @@ public function button($text, $url): self

public function image($image): self
{
if(!empty($image)){
if (! empty($image)) {
$this->payload['images'][] = $image;
}

Expand Down

0 comments on commit 89927d2

Please sign in to comment.