Changed `Boolean` to `bool` to avoid Psalm being confused with a potential class. Thanks @digilist
24 lines
448 B
PHP
24 lines
448 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of PHP-FFmpeg.
|
|
*
|
|
* (c) Alchemy <info@alchemy.fr>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace FFMpeg\FFProbe;
|
|
|
|
interface OptionsTesterInterface
|
|
{
|
|
/**
|
|
* Tells if the given option is supported by ffprobe.
|
|
*
|
|
* @param string $name
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function has($name);
|
|
}
|