From d3724a43f2760012f2a3dc284c4d68416986df88 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Tue, 15 Aug 2017 22:42:41 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/danog/MadelineProto/Lua.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/danog/MadelineProto/Lua.php b/src/danog/MadelineProto/Lua.php index 656409d4..a7535152 100644 --- a/src/danog/MadelineProto/Lua.php +++ b/src/danog/MadelineProto/Lua.php @@ -161,7 +161,9 @@ class Lua $newval[$name] = [$value, $name]; } foreach ($value as $key => $name) { - if ($key === 'madeline') continue; + if ($key === 'madeline') { + continue; + } $newval[$key] = $name; } if ($newval === []) {