Skip to content

Commit

Permalink
coverage ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
pookmish committed Oct 11, 2024
1 parent c6ef1c5 commit a365e45
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
/**
* Produces a book menu tree from an entity.
*
* @codeCoverageIgnore
*
* @DataProducer(
* id = "book",
* name = @Translation("Book Tree"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
/**
* Layout Schema Extension.
*
* @codeCoverageIgnore
*
* @SchemaExtension(
* id = "stanford_decoupled_books",
* name = "Stanford Decoupled Books",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
use Drupal\graphql\GraphQL\Execution\FieldContext;
use Drupal\graphql_compose\Plugin\GraphQLCompose\FieldType\ImageItem as OrigImageItem;

/**
* Overrides the original image item to provide focal point data.
*
* @codeCoverageIgnore
*/
class ImageItem extends OrigImageItem {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@
/**
* {@inheritDoc}
*
* @codeCoverageIgnore
*
* @GraphQLComposeSchemaType(
* id = "BookLink"
* )
*/
class BookLink extends GraphQLComposeSchemaTypeBase {


/**
* {@inheritdoc}
*/
Expand Down

0 comments on commit a365e45

Please sign in to comment.