Version 1.0.0

This commit is contained in:
diffhead
2025-11-16 01:51:25 +04:00
committed by Viktor Smagin
commit 8cb7f400fd
43 changed files with 4462 additions and 0 deletions

23
src/Object/Request.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
declare(strict_types=1);
namespace Diffhead\PHP\DataEnrichmentKit\Object;
class Request
{
public function __construct(
private ItemsBag $items,
private Target $target
) {}
public function items(): ItemsBag
{
return $this->items;
}
public function target(): Target
{
return $this->target;
}
}