for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SET\Handlers\DBConfigs;
class Mail extends ConfigAbstract
{
public $allowable = [
'mail.host',
'mail.port',
'mail.encryption',
'mail.password',
];
public function setup()
$this->setConfigValues('mail.driver');
$this->setConfigValues('mail.from.address');
$this->setConfigValues('mail.from.name');
if (config('mail.driver') == 'smtp') {
$this->implementAllowable();
}