| 1 | <?php |
||
| 10 | class ArrayWrite implements PipeInterface |
||
| 11 | { |
||
| 12 | use IdentificationTrait; |
||
| 13 | /** |
||
| 14 | * @var array |
||
| 15 | */ |
||
| 16 | private $localStorage; |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $identifier; |
||
| 21 | |||
| 22 | 1 | public function __construct(string $id, array &$localStorage) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @inheritdoc |
||
| 30 | */ |
||
| 31 | 1 | public function pass(DataBagInterface $dataBag): DataBagInterface |
|
| 37 | } |
||
| 38 |