for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mokka\Strategy;
use Mokka\Config\Logger;
use Mokka\Exchange\ExchangeInterface;
abstract class StrategyAbstract
{
/**
* @var ExchangeInterface
*/
protected $exchange;
protected $options;
protected $logger;
public function __construct(
ExchangeInterface $exchange,
Logger $logger,
$options
)
$this->exchange = $exchange;
$this->logger = $logger;
$this->options = $options;
}