for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of dispositif/wikibot application (@github)
* 2019-2023 © Philippe M./Irønie <[email protected]>
* For the full copyright and MIT license information, view the license file.
*/
declare(strict_types=1);
namespace App\Domain\Transformers\Handlers;
use App\Domain\Models\Wiki\OuvrageTemplate;
use App\Domain\WikiOptimizer\OptiStatus;
use Psr\Log\LoggerInterface;
abstract class AbstractMixHandler implements TransformHandlerInterface
{
/**
* @var OuvrageTemplate
protected $origin;
protected $book;
* @var LoggerInterface
protected $log;
* @var OptiStatus
protected $optiStatus;
public function __construct(OuvrageTemplate $origin, OuvrageTemplate $book, LoggerInterface $log, OptiStatus $optiStatus)
$this->origin = $origin;
$this->book = $book;
$this->log = $log;
$this->optiStatus = $optiStatus;
}