Skip to content
Snippets Groups Projects

Upgrade to PHP 7.3

Merged Guy Thouret requested to merge chore/665-refactor-object-use into master
1 file
+ 1
12
Compare changes
  • Side-by-side
  • Inline
+ 1
12
<?php
/**
* Payments Factory
*/
namespace Minds\Core\Payments;
use Minds\Core\Di\Di;
/**
* A factory providing handlers boosting items
*/
class Factory
{
/**
* Build the handler
* @param string $handler
* @param array $options (optional)
* @return BoostHandlerInterface
*/
public static function build($handler, $opts = [])
{
switch (ucfirst($handler)) {
Loading