Missing doc comments
This commit is contained in:
parent
1be7606aa2
commit
2b0f0a6740
1 changed files with 16 additions and 0 deletions
|
@ -12,7 +12,16 @@ use Symfony\Component\Process\ProcessBuilder;
|
|||
*/
|
||||
class VideoDownload
|
||||
{
|
||||
/**
|
||||
* Config instance
|
||||
* @var Config
|
||||
*/
|
||||
private $config;
|
||||
|
||||
/**
|
||||
* ProcessBuilder instance used to call Python
|
||||
* @var ProcessBuilder
|
||||
*/
|
||||
private $procBuilder;
|
||||
|
||||
/**
|
||||
|
@ -48,6 +57,13 @@ class VideoDownload
|
|||
return explode(PHP_EOL, trim($process->getOutput()));
|
||||
}
|
||||
|
||||
/**
|
||||
* 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')
|
||||
{
|
||||
$this->procBuilder->setArguments(
|
||||
|
|
Loading…
Reference in a new issue