息抜きすぎかなぁ

AspectManager.class.phpの_getInterceptors() 124行目あたり

$numOfMethods = count($methodName);
  ↓
$numOfMethods = count($methodNames);

じゃないかなぁ?

ClassCompiler.class.phpの_generateProxyMethod() 338あたり

\$methodArgs = array(${argNameString});
 ↓
\$methodArgs = func_get_args ();

にできないかなぁ?できるんだったら、$argNameArray・$argNameStringがいらなくなるかも・・・