Skip to content

Commit

Permalink
bugfix: remove "\" causing parse error
Browse files Browse the repository at this point in the history
  • Loading branch information
garrett-schlesinger committed Sep 12, 2014
1 parent 87539a9 commit db09813
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ private static function authorizePaymentForOrder($payment, $order)
// TODO(brian): move this function to a helper library
private static function callPrivateMethod($object, $methodName)
{
$reflectionClass = new \ReflectionClass($object);
$reflectionClass = new ReflectionClass($object);
$reflectionMethod = $reflectionClass->getMethod($methodName);
$reflectionMethod->setAccessible(true);

Expand Down

0 comments on commit db09813

Please sign in to comment.