Skip to content

Commit

Permalink
fix W return values
Browse files Browse the repository at this point in the history
  • Loading branch information
fooman committed Jan 14, 2015
1 parent 0ead4b8 commit 6e9947f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ public function aroundV(Intercepted $subject, \Closure $next, $param1)

public function beforeW(Intercepted $subject, $param1)
{
return ['<F:bV/>'];
return ['<F:bW/>'];
}

public function aroundW(Intercepted $subject, \Closure $next, $param1)
{
return '<F:V>' . $param1 . '<F:V/>';
return '<F:W>' . $param1 . '<F:W/>';
}

public function afterW(Intercepted $subject, $result)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ public function aroundV(Intercepted $subject, \Closure $next, $param1)

public function beforeW(Intercepted $subject, $param1)
{
return ['<P:bV/>'];
return ['<P:bW/>'];
}

public function aroundW(Intercepted $subject, \Closure $next, $param1)
{
return '<P:V>' . $param1 . '<P:V/>';
return '<P:W>' . $param1 . '<P:W/>';
}

public function afterW(Intercepted $subject, $result)
Expand Down

0 comments on commit 6e9947f

Please sign in to comment.