App\Entities\Setting\MailSettingEntity::getDriver PHP Method

getDriver() public method

public getDriver ( )
    public function getDriver()
    {
        return $this->driver;
    }

Usage Example

Example #1
0
 public function test_Should_SetAndGetDriver()
 {
     $mailSettingEntity = new MailSettingEntity();
     $mailSettingEntity->setDriver('smtp');
     $driver = $mailSettingEntity->getDriver();
     $this->assertEquals('smtp', $driver);
 }