Skip to content

Commit 7a7861b

Browse files
[DI] remove dead code
1 parent c2741b2 commit 7a7861b

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

LazyProxy/ProxyHelper.php

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,4 @@ public static function getTypeHint(\ReflectionFunctionAbstract $r, \ReflectionPa
6262
return $prefix.$parent->name;
6363
}
6464
}
65-
66-
private static function export($value)
67-
{
68-
if (!is_array($value)) {
69-
return var_export($value, true);
70-
}
71-
$code = array();
72-
foreach ($value as $k => $v) {
73-
$code[] = sprintf('%s => %s', var_export($k, true), self::export($v));
74-
}
75-
76-
return sprintf('array(%s)', implode(', ', $code));
77-
}
7865
}

0 commit comments

Comments
 (0)