Passed
Branch develop (236e77)
by Raoul
04:43
created
src/attributes.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -450,14 +450,14 @@  discard block
 block discarded – undo
450 450
 /**
451 451
  * @link https://html.spec.whatwg.org/multipage/microdata.html#attr-itemid
452 452
  */
453
- function itemid (string $value) : Attribute
453
+    function itemid (string $value) : Attribute
454 454
 {
455 455
     return new Attribute('itemid', $value);
456 456
 }
457 457
 
458
- /**
459
- * @link https://html.spec.whatwg.org/multipage/microdata.html#attr-itemid
460
- */
458
+    /**
459
+     * @link https://html.spec.whatwg.org/multipage/microdata.html#attr-itemid
460
+     */
461 461
 function itemprop (string $value) : Attribute
462 462
 {
463 463
     return new Attribute('itemprop', $value);
@@ -471,9 +471,9 @@  discard block
 block discarded – undo
471 471
     return new Attribute('itemref', $value);
472 472
 }
473 473
 
474
- /**
475
- * @link https://html.spec.whatwg.org/multipage/microdata.html#attr-itemscope
476
- */
474
+    /**
475
+     * @link https://html.spec.whatwg.org/multipage/microdata.html#attr-itemscope
476
+     */
477 477
 function itemscope (string $value) : Attribute
478 478
 {
479 479
     return new Attribute('itemscope', $value);
Please login to merge, or discard this patch.