Fix boolean types (#779)

Changed `Boolean` to `bool` to avoid Psalm being confused with a potential class.
Thanks @digilist
This commit is contained in:
Markus Fasselt 2020-12-23 11:14:24 +01:00 committed by GitHub
commit 7abb6d36cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 12 additions and 12 deletions

View file

@ -42,7 +42,7 @@ abstract class AbstractProgressListener extends EventEmitter implements Listener
/** @var string */
private $pathfile;
/** @var Boolean */
/** @var bool */
private $initialized = false;
/** @var integer */

View file

@ -44,7 +44,7 @@ interface VideoInterface extends AudioInterface
*
* @see https://wikipedia.org/wiki/Video_compression_picture_types
*
* @return Boolean
* @return bool
*/
public function supportBFrames();