mirror of
https://github.com/google/blockly.git
synced 2026-01-07 00:50:27 +01:00
Lint corrections.
This commit is contained in:
@@ -153,7 +153,8 @@ Blockly.PHP['controls_forEach'] = function(block) {
|
||||
var branch = Blockly.PHP.statementToCode(block, 'DO');
|
||||
branch = Blockly.PHP.addLoopTrap(branch, block.id);
|
||||
var code = '';
|
||||
code += 'foreach (' + argument0 + ' as ' + variable0 + ') {\n' + branch + '}\n';
|
||||
code += 'foreach (' + argument0 + ' as ' + variable0 +
|
||||
') {\n' + branch + '}\n';
|
||||
return code;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user