Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BigInteger/BigInteger.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static function factory($adapterName = null)
} elseif ($adapterName instanceof Adapter\AdapterInterface) {
return $adapterName;
} else {
return self::getAdapterPluginManager()->get($adapterName);
return static::getAdapterPluginManager()->get($adapterName);
}
}

Expand All @@ -55,7 +55,7 @@ public static function factory($adapterName = null)
*/
public static function setAdapterPluginManager(AdapterPluginManager $adapters)
{
self::$adapters = $adapters;
static::$adapters = $adapters;
}

/**
Expand Down

0 comments on commit bb56470

Please sign in to comment.