Apply fixes from StyleCI

This commit is contained in:
Daniil Gentili 2017-09-21 08:35:36 +00:00 committed by StyleCI Bot
parent c552b6d66b
commit 073adc9efa

View File

@ -159,7 +159,7 @@ class Lua
public static function convert_objects(&$data)
{
array_walk_recursive($data, function (&$value, $key) {
if (is_object($value) && !( $value instanceof \phpseclib\Math\BigInteger)) {
if (is_object($value) && !($value instanceof \phpseclib\Math\BigInteger)) {
$newval = [];
foreach (get_class_methods($value) as $name) {
$newval[$name] = [$value, $name];