Commit 9fe26fe4 authored by Armando Lüscher's avatar Armando Lüscher

Split `@param` and `@return` with an empty line to make it more readable.

parent ba4b607a
...@@ -80,6 +80,7 @@ class DateCommand extends Command ...@@ -80,6 +80,7 @@ class DateCommand extends Command
* Get coordinates * Get coordinates
* *
* @param string $location * @param string $location
*
* @return array|boolean * @return array|boolean
*/ */
private function getCoordinates($location) private function getCoordinates($location)
...@@ -119,6 +120,7 @@ class DateCommand extends Command ...@@ -119,6 +120,7 @@ class DateCommand extends Command
* *
* @param string $lat * @param string $lat
* @param string $lng * @param string $lng
*
* @return array|boolean * @return array|boolean
*/ */
private function getDate($lat, $lng) private function getDate($lat, $lng)
...@@ -159,6 +161,7 @@ class DateCommand extends Command ...@@ -159,6 +161,7 @@ class DateCommand extends Command
* Get formatted date * Get formatted date
* *
* @param string $location * @param string $location
*
* @return string * @return string
*/ */
private function getFormattedDate($location) private function getFormattedDate($location)
...@@ -184,6 +187,7 @@ class DateCommand extends Command ...@@ -184,6 +187,7 @@ class DateCommand extends Command
* Perform a simple cURL request * Perform a simple cURL request
* *
* @param string $url * @param string $url
*
* @return object * @return object
*/ */
private function request($url) private function request($url)
......
...@@ -65,6 +65,7 @@ class WeatherCommand extends Command ...@@ -65,6 +65,7 @@ class WeatherCommand extends Command
* Get weather using cURL request * Get weather using cURL request
* *
* @param string $location * @param string $location
*
* @return object * @return object
*/ */
private function getWeather($location) private function getWeather($location)
...@@ -100,6 +101,7 @@ class WeatherCommand extends Command ...@@ -100,6 +101,7 @@ class WeatherCommand extends Command
* Get weather string * Get weather string
* *
* @param string $location * @param string $location
*
* @return bool|string * @return bool|string
*/ */
private function getWeatherString($location) private function getWeatherString($location)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment