24 lines
367 B
PHP
24 lines
367 B
PHP
<?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;
|
|
}
|
|
}
|