We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb522a6 commit a038eb6Copy full SHA for a038eb6
README.md
@@ -87,8 +87,10 @@ class OrderShippedNotification extends Notification implements CrispWhatsAppNoti
87
$templateArray = LaravelCrispWhatsAppFacade::getMessageTemplateArray('hello_world');
88
89
return CrispWhatsAppMessageFactory::createFromTemplateArray(
90
- $templateArray,
91
- ComponentParameterFactory::text('Crispy Fries')
+ $templateArray,
+ [
92
+ ComponentParameterFactory::text('Crispy Fries'),
93
+ ],
94
);
95
}
96
tests/ExampleTest.php
@@ -1,6 +1,7 @@
1
<?php
2
3
declare(strict_types=1);
4
+
5
it('can test', function (): void {
6
expect(true)->toBeTrue();
7
});
0 commit comments