| Total Complexity | 2 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | class LogMailer implements MailerInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Logger |
||
| 27 | * |
||
| 28 | * @var \Psr\Log\LoggerInterface |
||
| 29 | */ |
||
| 30 | protected $Logger; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Log Level |
||
| 34 | * |
||
| 35 | * @var string |
||
| 36 | */ |
||
| 37 | protected $logLevel; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Constructor |
||
| 41 | * |
||
| 42 | * @param \Psr\Log\LoggerInterface |
||
| 43 | */ |
||
| 44 | public function __construct( |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @inheritDoc |
||
| 54 | */ |
||
| 55 | public function send(EmailInterface $email): bool |
||
| 62 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.