Skip to content

Commit

Permalink
Fixed context, it used old style prototype extension api
Browse files Browse the repository at this point in the history
  • Loading branch information
poef committed Feb 23, 2020
1 parent 73b27c7 commit 9e1548c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/context.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class context
*/
public static function push($params)
{
self::$context = self::$context->extend( $params );
self::$context = \arc\prototype::extend(self::$context, $params );
}

/**
Expand Down

0 comments on commit 9e1548c

Please sign in to comment.