This commit is contained in:
danogentili 2017-08-23 17:50:21 +03:00
parent 3e182dbee5
commit 5dfc160f1d

View File

@ -220,7 +220,8 @@ trait TL
{
$res = [];
foreach ($this->methods->method_namespace as $pair) {
$res[$pair[0]] = $pair[0];
list($a, $b) = $pair;
$res[$a] = $a;
}
return $res;