/**
 * Set used parameter to true
 *
 * @param   bool  $value  The value to set
 *
 * @return void
 *
 * @since   4.0.0
 */
public function setStopTransition($value = true)
{
    $this->arguments['stopTransition'] = $value;
    if ($value === true) {
        $this->stopPropagation();
    }
}