From 5d9a6873b69a2a52358084a174c7d5f6ce4e478a Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Fri, 14 Oct 2016 00:40:57 +0000 Subject: [PATCH] Applied fixes from StyleCI --- classes/VideoDownload.php | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/classes/VideoDownload.php b/classes/VideoDownload.php index 1c6e448..188432d 100644 --- a/classes/VideoDownload.php +++ b/classes/VideoDownload.php @@ -13,13 +13,15 @@ use Symfony\Component\Process\ProcessBuilder; class VideoDownload { /** - * Config instance + * Config instance. + * * @var Config */ private $config; /** - * ProcessBuilder instance used to call Python + * ProcessBuilder instance used to call Python. + * * @var ProcessBuilder */ private $procBuilder; @@ -58,10 +60,12 @@ class VideoDownload } /** - * Get a property from youtube-dl - * @param string $url URL to parse - * @param string $format Format - * @param string $prop Property + * Get a property from youtube-dl. + * + * @param string $url URL to parse + * @param string $format Format + * @param string $prop Property + * * @return string */ private function getProp($url, $format = null, $prop = 'dump-json')