Created
March 15, 2016 12:49
-
-
Save pepakriz/7889b51c858f0bac7ae2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php declare(strict_types = 1); | |
namespace Hele\Sms; | |
use Nette\Http\Url; | |
class Test | |
{ | |
const URL = 'https://foo.com'; | |
public function sendMessage() | |
{ | |
$url = new Url(self::URL); | |
$url->getAbsoluteUrl(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment