Fix PHPDoc comments project-wide

This commit is contained in:
Hypolite Petovan 2019-01-06 16:06:53 -05:00
parent 6077aa5847
commit 3282ce5389
113 changed files with 1703 additions and 795 deletions

View file

@ -50,7 +50,7 @@ class Protocol
*
* @param string $profile_url
* @return string
* @throws Exception
* @throws \Exception
*/
public static function getAddrFromProfileUrl($profile_url)
{
@ -69,8 +69,9 @@ class Protocol
* Guesses the network from a profile URL
*
* @param string $profile_url
* @param array $matches preg_match return array: [0] => Full match [1] => hostname [2] => username
* @return type
* @param array $matches preg_match return array: [0] => Full match [1] => hostname [2] => username
* @return string
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
public static function matchByProfileUrl($profile_url, &$matches = [])
{
@ -131,6 +132,7 @@ class Protocol
* @param string $profile_url
* @param string $display_name
* @return string
* @throws \Exception
*/
public static function formatMention($profile_url, $display_name)
{