Passed
Push — master ( 3e5454...4b648e )
by Jorijn
03:20
created

src/Mailables/SecurityMail.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Jorijn\LaravelSecurityChecker\Mailables;
4
5
use Illuminate\Bus\Queueable;
6
use Illuminate\Mail\Mailable;
0 ignored issues
show
The type Illuminate\Mail\Mailable was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
7
use Illuminate\Queue\SerializesModels;
8
9
class SecurityMail extends Mailable
10
{
11
    use SerializesModels;
12
    use Queueable;
13
14
    protected $checkResult;
15
16
    /**
17
     * SecurityMail constructor.
18
     *
19
     * @param array $checkResult results from the Security Checker
20
     */
21
    public function __construct($checkResult)
22
    {
23
        $this->checkResult = $checkResult;
24
    }
25
26
    /**
27
     * Build the message.
28
     *
29
     * @return $this
30
     */
31
    public function build()
32
    {
33
        $packageCount = count($this->checkResult);
34
        $title = trans_choice('laravel-security-checker::messages.subject_new_vulnerabilities', $packageCount, [
35
            'count' => $packageCount
36
        ]);
37
        $subject = '['.config('app.name').'] '.$title;
38
39
        return $this->subject($subject)
40
            ->markdown('laravel-security-checker::security-mail', [
41
                'title'    => $title,
42
                'packages' => $this->checkResult
43
            ]);
44
    }
45
}
46