Closed
Description
PHP_CodeSniffer version 3.4.0 (stable) by Squiz (http://www.squiz.net)
$test = myfunc(1 * static::TEST);
$test++;
throws "Operation must be bracketed" and expects
$test = myfunc(1 * (static::TEST));
while
$test = (1 * static::TEST);
is allowed