ffmpeg-mappable-media/src/FFMpeg/FFProbe/OptionsTesterInterface.php
Markus Fasselt 7abb6d36cb
Fix boolean types (#779)
Changed `Boolean` to `bool` to avoid Psalm being confused with a potential class.
Thanks @digilist
2020-12-23 11:14:24 +01:00

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);
}