|
|
@@ -33,7 +33,7 @@ interface Zend_Service_ShortUrl_Shortener
|
|
|
* @param string $url URL to Shorten
|
|
|
* @return string Shortened Url
|
|
|
*/
|
|
|
- function shorten($shortenedUrl);
|
|
|
+ public function shorten($shortenedUrl);
|
|
|
|
|
|
/**
|
|
|
* Reveals target for short URL
|
|
|
@@ -41,5 +41,5 @@ interface Zend_Service_ShortUrl_Shortener
|
|
|
* @param string $shortenedUrl URL to reveal target of
|
|
|
* @return string Unshortened Url
|
|
|
*/
|
|
|
- function unshorten($shortenedUrl);
|
|
|
+ public function unshorten($shortenedUrl);
|
|
|
}
|