App\Entities\Setting\AppSettingEntity::getUrl PHP Method

getUrl() public method

public getUrl ( )
    public function getUrl()
    {
        return $this->url;
    }

Usage Example

Example #1
0
 public function test_Should_SetAndGetUrl()
 {
     $appSettingEntity = new AppSettingEntity();
     $appSettingEntity->setUrl('http://example.com');
     $url = $appSettingEntity->getUrl();
     $this->assertEquals('http://example.com', $url);
 }
AppSettingEntity