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
|
|
@ -31,7 +31,7 @@ class ResizeFilter implements VideoFilterInterface
|
|||
private $dimension;
|
||||
/** @var string */
|
||||
private $mode;
|
||||
/** @var Boolean */
|
||||
/** @var bool */
|
||||
private $forceStandards;
|
||||
/** @var integer */
|
||||
private $priority;
|
||||
|
|
@ -69,7 +69,7 @@ class ResizeFilter implements VideoFilterInterface
|
|||
}
|
||||
|
||||
/**
|
||||
* @return Boolean
|
||||
* @return bool
|
||||
*/
|
||||
public function areStandardsForced()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ class VideoFilters extends AudioFilters
|
|||
*
|
||||
* @param Dimension $dimension
|
||||
* @param string $mode
|
||||
* @param Boolean $forceStandards
|
||||
* @param bool $forceStandards
|
||||
*
|
||||
* @return VideoFilters
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue