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

setUrl() public method

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

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);
 }
All Usage Examples Of App\Entities\Setting\AppSettingEntity::setUrl
AppSettingEntity