Skip to content

Commit 1b37606

Browse files
committed
code coverage ignore
1 parent 20645a6 commit 1b37606

27 files changed

+288
-864
lines changed

src/JsonSchema.php

Lines changed: 34 additions & 102 deletions
Original file line numberDiff line numberDiff line change
@@ -269,9 +269,7 @@ public function setId($id)
269269
$this->id = $id;
270270
return $this;
271271
}
272-
/**
273-
* @codeCoverageIgnoreEnd
274-
*/
272+
/** @codeCoverageIgnoreEnd */
275273

276274
/**
277275
* @param string $schema
@@ -283,9 +281,7 @@ public function setSchema($schema)
283281
$this->schema = $schema;
284282
return $this;
285283
}
286-
/**
287-
* @codeCoverageIgnoreEnd
288-
*/
284+
/** @codeCoverageIgnoreEnd */
289285

290286
/**
291287
* @param string $title
@@ -297,9 +293,7 @@ public function setTitle($title)
297293
$this->title = $title;
298294
return $this;
299295
}
300-
/**
301-
* @codeCoverageIgnoreEnd
302-
*/
296+
/** @codeCoverageIgnoreEnd */
303297

304298
/**
305299
* @param string $description
@@ -311,9 +305,7 @@ public function setDescription($description)
311305
$this->description = $description;
312306
return $this;
313307
}
314-
/**
315-
* @codeCoverageIgnoreEnd
316-
*/
308+
/** @codeCoverageIgnoreEnd */
317309

318310
/**
319311
* @param $default
@@ -325,9 +317,7 @@ public function setDefault($default)
325317
$this->default = $default;
326318
return $this;
327319
}
328-
/**
329-
* @codeCoverageIgnoreEnd
330-
*/
320+
/** @codeCoverageIgnoreEnd */
331321

332322
/**
333323
* @param float $multipleOf
@@ -339,9 +329,7 @@ public function setMultipleOf($multipleOf)
339329
$this->multipleOf = $multipleOf;
340330
return $this;
341331
}
342-
/**
343-
* @codeCoverageIgnoreEnd
344-
*/
332+
/** @codeCoverageIgnoreEnd */
345333

346334
/**
347335
* @param float $maximum
@@ -353,9 +341,7 @@ public function setMaximum($maximum)
353341
$this->maximum = $maximum;
354342
return $this;
355343
}
356-
/**
357-
* @codeCoverageIgnoreEnd
358-
*/
344+
/** @codeCoverageIgnoreEnd */
359345

360346
/**
361347
* @param bool $exclusiveMaximum
@@ -367,9 +353,7 @@ public function setExclusiveMaximum($exclusiveMaximum)
367353
$this->exclusiveMaximum = $exclusiveMaximum;
368354
return $this;
369355
}
370-
/**
371-
* @codeCoverageIgnoreEnd
372-
*/
356+
/** @codeCoverageIgnoreEnd */
373357

374358
/**
375359
* @param float $minimum
@@ -381,9 +365,7 @@ public function setMinimum($minimum)
381365
$this->minimum = $minimum;
382366
return $this;
383367
}
384-
/**
385-
* @codeCoverageIgnoreEnd
386-
*/
368+
/** @codeCoverageIgnoreEnd */
387369

388370
/**
389371
* @param bool $exclusiveMinimum
@@ -395,9 +377,7 @@ public function setExclusiveMinimum($exclusiveMinimum)
395377
$this->exclusiveMinimum = $exclusiveMinimum;
396378
return $this;
397379
}
398-
/**
399-
* @codeCoverageIgnoreEnd
400-
*/
380+
/** @codeCoverageIgnoreEnd */
401381

402382
/**
403383
* @param int $maxLength
@@ -409,9 +389,7 @@ public function setMaxLength($maxLength)
409389
$this->maxLength = $maxLength;
410390
return $this;
411391
}
412-
/**
413-
* @codeCoverageIgnoreEnd
414-
*/
392+
/** @codeCoverageIgnoreEnd */
415393

416394
/**
417395
* @param int $minLength
@@ -423,9 +401,7 @@ public function setMinLength($minLength)
423401
$this->minLength = $minLength;
424402
return $this;
425403
}
426-
/**
427-
* @codeCoverageIgnoreEnd
428-
*/
404+
/** @codeCoverageIgnoreEnd */
429405

430406
/**
431407
* @param string $pattern
@@ -437,9 +413,7 @@ public function setPattern($pattern)
437413
$this->pattern = $pattern;
438414
return $this;
439415
}
440-
/**
441-
* @codeCoverageIgnoreEnd
442-
*/
416+
/** @codeCoverageIgnoreEnd */
443417

444418
/**
445419
* @param bool|JsonSchema $additionalItems
@@ -451,9 +425,7 @@ public function setAdditionalItems($additionalItems)
451425
$this->additionalItems = $additionalItems;
452426
return $this;
453427
}
454-
/**
455-
* @codeCoverageIgnoreEnd
456-
*/
428+
/** @codeCoverageIgnoreEnd */
457429

458430
/**
459431
* @param JsonSchema|JsonSchema[]|array $items
@@ -465,9 +437,7 @@ public function setItems($items)
465437
$this->items = $items;
466438
return $this;
467439
}
468-
/**
469-
* @codeCoverageIgnoreEnd
470-
*/
440+
/** @codeCoverageIgnoreEnd */
471441

472442
/**
473443
* @param int $maxItems
@@ -479,9 +449,7 @@ public function setMaxItems($maxItems)
479449
$this->maxItems = $maxItems;
480450
return $this;
481451
}
482-
/**
483-
* @codeCoverageIgnoreEnd
484-
*/
452+
/** @codeCoverageIgnoreEnd */
485453

486454
/**
487455
* @param int $minItems
@@ -493,9 +461,7 @@ public function setMinItems($minItems)
493461
$this->minItems = $minItems;
494462
return $this;
495463
}
496-
/**
497-
* @codeCoverageIgnoreEnd
498-
*/
464+
/** @codeCoverageIgnoreEnd */
499465

500466
/**
501467
* @param bool $uniqueItems
@@ -507,9 +473,7 @@ public function setUniqueItems($uniqueItems)
507473
$this->uniqueItems = $uniqueItems;
508474
return $this;
509475
}
510-
/**
511-
* @codeCoverageIgnoreEnd
512-
*/
476+
/** @codeCoverageIgnoreEnd */
513477

514478
/**
515479
* @param int $maxProperties
@@ -521,9 +485,7 @@ public function setMaxProperties($maxProperties)
521485
$this->maxProperties = $maxProperties;
522486
return $this;
523487
}
524-
/**
525-
* @codeCoverageIgnoreEnd
526-
*/
488+
/** @codeCoverageIgnoreEnd */
527489

528490
/**
529491
* @param int $minProperties
@@ -535,9 +497,7 @@ public function setMinProperties($minProperties)
535497
$this->minProperties = $minProperties;
536498
return $this;
537499
}
538-
/**
539-
* @codeCoverageIgnoreEnd
540-
*/
500+
/** @codeCoverageIgnoreEnd */
541501

542502
/**
543503
* @param string[]|array $required
@@ -549,9 +509,7 @@ public function setRequired($required)
549509
$this->required = $required;
550510
return $this;
551511
}
552-
/**
553-
* @codeCoverageIgnoreEnd
554-
*/
512+
/** @codeCoverageIgnoreEnd */
555513

556514
/**
557515
* @param bool|JsonSchema $additionalProperties
@@ -563,9 +521,7 @@ public function setAdditionalProperties($additionalProperties)
563521
$this->additionalProperties = $additionalProperties;
564522
return $this;
565523
}
566-
/**
567-
* @codeCoverageIgnoreEnd
568-
*/
524+
/** @codeCoverageIgnoreEnd */
569525

570526
/**
571527
* @param JsonSchema[] $definitions
@@ -577,9 +533,7 @@ public function setDefinitions($definitions)
577533
$this->definitions = $definitions;
578534
return $this;
579535
}
580-
/**
581-
* @codeCoverageIgnoreEnd
582-
*/
536+
/** @codeCoverageIgnoreEnd */
583537

584538
/**
585539
* @param JsonSchema[] $properties
@@ -591,9 +545,7 @@ public function setProperties($properties)
591545
$this->properties = $properties;
592546
return $this;
593547
}
594-
/**
595-
* @codeCoverageIgnoreEnd
596-
*/
548+
/** @codeCoverageIgnoreEnd */
597549

598550
/**
599551
* @param JsonSchema[] $patternProperties
@@ -605,9 +557,7 @@ public function setPatternProperties($patternProperties)
605557
$this->patternProperties = $patternProperties;
606558
return $this;
607559
}
608-
/**
609-
* @codeCoverageIgnoreEnd
610-
*/
560+
/** @codeCoverageIgnoreEnd */
611561

612562
/**
613563
* @param JsonSchema[]|string[][]|array[] $dependencies
@@ -619,9 +569,7 @@ public function setDependencies($dependencies)
619569
$this->dependencies = $dependencies;
620570
return $this;
621571
}
622-
/**
623-
* @codeCoverageIgnoreEnd
624-
*/
572+
/** @codeCoverageIgnoreEnd */
625573

626574
/**
627575
* @param array $enum
@@ -633,9 +581,7 @@ public function setEnum($enum)
633581
$this->enum = $enum;
634582
return $this;
635583
}
636-
/**
637-
* @codeCoverageIgnoreEnd
638-
*/
584+
/** @codeCoverageIgnoreEnd */
639585

640586
/**
641587
* @param array $type
@@ -647,9 +593,7 @@ public function setType($type)
647593
$this->type = $type;
648594
return $this;
649595
}
650-
/**
651-
* @codeCoverageIgnoreEnd
652-
*/
596+
/** @codeCoverageIgnoreEnd */
653597

654598
/**
655599
* @param string $format
@@ -661,9 +605,7 @@ public function setFormat($format)
661605
$this->format = $format;
662606
return $this;
663607
}
664-
/**
665-
* @codeCoverageIgnoreEnd
666-
*/
608+
/** @codeCoverageIgnoreEnd */
667609

668610
/**
669611
* @param string $ref
@@ -675,9 +617,7 @@ public function setRef($ref)
675617
$this->ref = $ref;
676618
return $this;
677619
}
678-
/**
679-
* @codeCoverageIgnoreEnd
680-
*/
620+
/** @codeCoverageIgnoreEnd */
681621

682622
/**
683623
* @param JsonSchema[]|array $allOf
@@ -689,9 +629,7 @@ public function setAllOf($allOf)
689629
$this->allOf = $allOf;
690630
return $this;
691631
}
692-
/**
693-
* @codeCoverageIgnoreEnd
694-
*/
632+
/** @codeCoverageIgnoreEnd */
695633

696634
/**
697635
* @param JsonSchema[]|array $anyOf
@@ -703,9 +641,7 @@ public function setAnyOf($anyOf)
703641
$this->anyOf = $anyOf;
704642
return $this;
705643
}
706-
/**
707-
* @codeCoverageIgnoreEnd
708-
*/
644+
/** @codeCoverageIgnoreEnd */
709645

710646
/**
711647
* @param JsonSchema[]|array $oneOf
@@ -717,9 +653,7 @@ public function setOneOf($oneOf)
717653
$this->oneOf = $oneOf;
718654
return $this;
719655
}
720-
/**
721-
* @codeCoverageIgnoreEnd
722-
*/
656+
/** @codeCoverageIgnoreEnd */
723657

724658
/**
725659
* @param JsonSchema $not Core schema meta-schema
@@ -731,8 +665,6 @@ public function setNot($not)
731665
$this->not = $not;
732666
return $this;
733667
}
734-
/**
735-
* @codeCoverageIgnoreEnd
736-
*/
668+
/** @codeCoverageIgnoreEnd */
737669
}
738670

0 commit comments

Comments
 (0)