Skip to content

Commit 89b94ff

Browse files
authored
Add linting check to project (#10)
* Add laravel pint * Add workflow for linting
1 parent 8f859f0 commit 89b94ff

File tree

3 files changed

+49
-20
lines changed

3 files changed

+49
-20
lines changed

.github/workflows/lint.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Lint
2+
3+
on:
4+
pull_request:
5+
branches: [ "main" ]
6+
7+
jobs:
8+
lint:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
13+
with:
14+
php-version: '8.0'
15+
16+
- uses: actions/checkout@v3
17+
18+
- name: Install Dependencies
19+
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
20+
21+
- name: Check Code Against Linter
22+
run: composer lint

composer.json

+7
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
"guzzlehttp/guzzle": "^7.2",
2626
"laravel/framework": "^9.0"
2727
},
28+
"scripts": {
29+
"lint": "vendor/bin/pint --test",
30+
"lint:fix": "vendor/bin/pint"
31+
},
2832
"extra": {
2933
"laravel": {
3034
"providers": [
@@ -41,5 +45,8 @@
4145
"allow-plugins": {
4246
"kylekatarnls/update-helper": false
4347
}
48+
},
49+
"require-dev": {
50+
"laravel/pint": "^1.0"
4451
}
4552
}

src/Transport.php

+20-20
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class Transport extends AbstractTransport
1313
{
1414
/**
1515
* Graph api configuration
16+
*
1617
* @var array
1718
*/
1819
private array $config;
@@ -23,16 +24,15 @@ public function __construct(array $config)
2324
$this->config = $config;
2425
}
2526

26-
2727
protected function doSend(SentMessage $message): void
2828
{
2929
$token = $this->getToken();
3030
$email = MessageConverter::toEmail($message->getOriginalMessage());
3131
$url = sprintf('https://graph.microsoft.com/v1.0/users/%s/sendMail', $email->getFrom()[0]->getEncodedAddress());
3232
$response = Http::withHeaders([
33-
'Authorization' => sprintf('Bearer %s', $token)
33+
'Authorization' => sprintf('Bearer %s', $token),
3434
])->post($url, [
35-
"message" => $this->getMessage($email)
35+
'message' => $this->getMessage($email),
3636
]);
3737
$response->throw();
3838
}
@@ -44,7 +44,7 @@ public function getToken()
4444
'client_id' => $this->config['client_id'],
4545
'client_secret' => $this->config['client_secret'],
4646
'scope' => 'https://graph.microsoft.com/.default',
47-
'grant_type' => 'client_credentials'
47+
'grant_type' => 'client_credentials',
4848
]);
4949
$response->throw();
5050

@@ -62,18 +62,18 @@ public function __toString(): string
6262
private function getMessage(Email $email)
6363
{
6464
return array_filter([
65-
"from" => $this->getRecipient($email->getFrom()[0]),
66-
"sender" => $this->getRecipient($email->getFrom()[0]),
67-
"toRecipients" => $this->getRecipientsCollection($email->getTo()),
68-
"ccRecipients" => $this->getRecipientsCollection($email->getCc()),
69-
"bccRecipients" => $this->getRecipientsCollection($email->getBcc()),
70-
"replyTo" => $this->getRecipientsCollection($email->getReplyTo()),
71-
"subject" => $email->getSubject(),
72-
"body" => [
73-
"contentType" => $email->getTextBody() ? 'Text' : 'HTML',
74-
"content" => $email->getTextBody() ?? $email->getHtmlBody(),
65+
'from' => $this->getRecipient($email->getFrom()[0]),
66+
'sender' => $this->getRecipient($email->getFrom()[0]),
67+
'toRecipients' => $this->getRecipientsCollection($email->getTo()),
68+
'ccRecipients' => $this->getRecipientsCollection($email->getCc()),
69+
'bccRecipients' => $this->getRecipientsCollection($email->getBcc()),
70+
'replyTo' => $this->getRecipientsCollection($email->getReplyTo()),
71+
'subject' => $email->getSubject(),
72+
'body' => [
73+
'contentType' => $email->getTextBody() ? 'Text' : 'HTML',
74+
'content' => $email->getTextBody() ?? $email->getHtmlBody(),
7575
],
76-
"attachments" => $this->getAttachmentsCollection($email->getAttachments())
76+
'attachments' => $this->getAttachmentsCollection($email->getAttachments()),
7777
]);
7878
}
7979

@@ -91,7 +91,7 @@ private function getRecipient($address): array
9191
'emailAddress' => array_filter([
9292
'address' => $address->getAddress(),
9393
'name' => $address->getName(),
94-
])
94+
]),
9595
];
9696
}
9797

@@ -106,10 +106,10 @@ private function getAttachmentsCollection($attachments)
106106
private function getAttachment(DataPart $attachment)
107107
{
108108
return array_filter([
109-
"@odata.type" => "#microsoft.graph.fileAttachment",
110-
"name" => $attachment->getName() ?? $attachment->getFilename(),
111-
"contentType" => $attachment->getContentType(),
112-
"contentBytes" => base64_encode($attachment->getBody()),
109+
'@odata.type' => '#microsoft.graph.fileAttachment',
110+
'name' => $attachment->getName() ?? $attachment->getFilename(),
111+
'contentType' => $attachment->getContentType(),
112+
'contentBytes' => base64_encode($attachment->getBody()),
113113
]);
114114
}
115115
}

0 commit comments

Comments
 (0)