Fix boolean types (#779)
Changed `Boolean` to `bool` to avoid Psalm being confused with a potential class. Thanks @digilist
This commit is contained in:
parent
a1a3281dbf
commit
7abb6d36cb
10 changed files with 12 additions and 12 deletions
|
|
@ -20,7 +20,7 @@ class Stream extends AbstractData
|
|||
/**
|
||||
* Returns true if the stream is an audio stream.
|
||||
*
|
||||
* @return Boolean
|
||||
* @return bool
|
||||
*/
|
||||
public function isAudio()
|
||||
{
|
||||
|
|
@ -30,7 +30,7 @@ class Stream extends AbstractData
|
|||
/**
|
||||
* Returns true if the stream is a video stream.
|
||||
*
|
||||
* @return Boolean
|
||||
* @return bool
|
||||
*/
|
||||
public function isVideo()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue