Skip to content

Commit bb8842f

Browse files
authored
Merge pull request #5 from laravel-notification-channels/analysis-8KgLV3
Applied fixes from StyleCI
2 parents 177b021 + fced500 commit bb8842f

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

src/Exceptions/CouldNotSendNotification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ public static function invalidMessageObject($class)
3232
*/
3333
public static function missingFrom()
3434
{
35-
return new static("Notification was not sent. Missing `from` number.");
35+
return new static('Notification was not sent. Missing `from` number.');
3636
}
3737
}

tests/TwilioCallMessageTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace NotificationChannels\Twilio\Test;
44

5-
use Illuminate\Support\Arr;
65
use NotificationChannels\Twilio\TwilioCallMessage;
76
use PHPUnit_Framework_TestCase;
87

@@ -49,4 +48,4 @@ public function it_can_set_the_from()
4948

5049
$this->assertEquals('+1234567890', $this->message->from);
5150
}
52-
}
51+
}

tests/TwilioSmsMessageTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace NotificationChannels\Twilio\Test;
44

5-
use Illuminate\Support\Arr;
65
use NotificationChannels\Twilio\TwilioSmsMessage;
76
use PHPUnit_Framework_TestCase;
87

@@ -49,4 +48,4 @@ public function it_can_set_the_from()
4948

5049
$this->assertEquals('+1234567890', $this->message->from);
5150
}
52-
}
51+
}

0 commit comments

Comments
 (0)