mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-16 13:07:14 +01:00
28 lines
741 B
PHP
28 lines
741 B
PHP
|
<?php
|
||
|
|
||
|
namespace Xentral\Modules\Api\Resource\Result;
|
||
|
|
||
|
class ItemResult extends AbstractResult
|
||
|
{
|
||
|
/**
|
||
|
* @param array $item
|
||
|
* @param array|null $pagination
|
||
|
*/
|
||
|
public function __construct(array $item, array $pagination = null)
|
||
|
{
|
||
|
if ($pagination !== null) {
|
||
|
throw new \InvalidArgumentException('ItemResult can not have pagination');
|
||
|
}
|
||
|
|
||
|
if (empty($item)) {
|
||
|
throw new \InvalidArgumentException('ItemResult can not be empty');
|
||
|
}
|
||
|
if (is_numeric(key($item))) {
|
||
|
throw new \InvalidArgumentException('ItemResult can only store an associative array');
|
||
|
}
|
||
|
|
||
|
$this->type = self::RESULT_TYPE_ITEM;
|
||
|
$this->data = $item;
|
||
|
}
|
||
|
}
|