Merge branch '3.0'

This commit is contained in:
terrafrost 2022-12-07 08:38:28 -06:00
commit e1541eb109

View File

@ -2971,4 +2971,14 @@ abstract class SymmetricKey
{
return array_flip(self::MODE_MAP)[$this->mode];
}
/**
* Is the continuous buffer enabled?
*
* @return boolean
*/
public function continuousBufferEnabled()
{
return $this->continuousBuffer;
}
}