Mercurial > hg > isophonics-drupal-site
view core/modules/jsonapi/src/JsonApiResource/OmittedData.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | af1871eacc83 |
children |
line wrap: on
line source
<?php namespace Drupal\jsonapi\JsonApiResource; use Drupal\Component\Assertion\Inspector; use Drupal\jsonapi\Exception\EntityAccessDeniedHttpException; /** * Represents resource data that should be omitted from the JSON:API document. * * @internal JSON:API maintains no PHP API. The API is the HTTP API. This class * may change at any time and could break any dependencies on it. * * @see https://www.drupal.org/project/jsonapi/issues/3032787 * @see jsonapi.api.php */ class OmittedData extends ResourceObjectData { /** * OmittedData constructor. * * @param \Drupal\jsonapi\Exception\EntityAccessDeniedHttpException[] $data * Resource objects that are the primary data for the response. * * @see \Drupal\jsonapi\JsonApiResource\Data::__construct */ public function __construct(array $data) { assert(Inspector::assertAllObjects($data, EntityAccessDeniedHttpException::class)); parent::__construct($data, -1); } }