We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e3c374 commit c1d122fCopy full SHA for c1d122f
composer.json
@@ -22,8 +22,7 @@
22
],
23
"require": {
24
"php": "^8.0.2",
25
- "guzzlehttp/guzzle": "^7.2",
26
- "laravel/framework": "^9.0"
+ "laravel/framework": "^9.0|^10.0"
27
},
28
"scripts": {
29
"lint": "vendor/bin/pint --test",
src/Transport.php
@@ -13,15 +13,13 @@ class Transport extends AbstractTransport
13
{
14
/**
15
* Graph api configuration
16
- *
17
- * @var array
18
*/
19
private array $config;
20
21
public function __construct(array $config)
parent::__construct(null, null);
- $this->config = $config['mailers']['graph-api'];
+ $this->config = $config;
}
protected function doSend(SentMessage $message): void
0 commit comments