Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public function testSupportWithNotSmsMessage()
$this->assertFalse($transport->supports($message));
}

public function testSupportWithNotLOX24Options()
public function testSupportWithNotLox24Options()
{
$transport = new Lox24Transport('user', 'token', 'testFrom');
$message = new SmsMessage('test', 'test');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Notifier\Bridge\Lox24\Webhook\LOX24RequestParser;
use Symfony\Component\Notifier\Bridge\Lox24\Webhook\Lox24RequestParser;
use Symfony\Component\RemoteEvent\Event\Sms\SmsEvent;
use Symfony\Component\Webhook\Exception\RejectWebhookException;

Expand All @@ -22,11 +22,11 @@
*/
class Lox24RequestParserTest extends TestCase
{
private LOX24RequestParser $parser;
private Lox24RequestParser $parser;

protected function setUp(): void
{
$this->parser = new LOX24RequestParser();
$this->parser = new Lox24RequestParser();
}

public function testInvalidNotificationName()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* @see https://doc.lox24.eu/#section/Introduction/Notifications
*/
final class LOX24RequestParser extends AbstractRequestParser
final class Lox24RequestParser extends AbstractRequestParser
{
protected function getRequestMatcher(): RequestMatcherInterface
{
Expand Down
Loading