Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
2 / 2 |
AbstractProcessor | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
__construct | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
<?php | |
declare(strict_types=1); | |
namespace I18Next\Locale\Processor; | |
use I18Next\Locale\Translations; | |
/** | |
* @internal | |
*/ | |
abstract class AbstractProcessor | |
{ | |
/** @var Translations */ | |
protected $translations; | |
/** | |
* AbstractProcessor constructor. | |
* | |
* @param Translations $translations | |
*/ | |
public function __construct(Translations $translations) | |
{ | |
$this->translations = $translations; | |
} | |
} |