From 3e182dbee5a02cfb89fb43fd15ecd3e80dece2e7 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Wed, 23 Aug 2017 13:54:15 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/danog/MadelineProto/TL/TL.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/danog/MadelineProto/TL/TL.php b/src/danog/MadelineProto/TL/TL.php index 00f6da30..12d362dd 100644 --- a/src/danog/MadelineProto/TL/TL.php +++ b/src/danog/MadelineProto/TL/TL.php @@ -219,7 +219,10 @@ trait TL public function get_method_namespaces() { $res = []; - foreach ($this->methods->method_namespace as $pair) { $res[$pair[0]] = $pair[0]; } + foreach ($this->methods->method_namespace as $pair) { + $res[$pair[0]] = $pair[0]; + } + return $res; }