Passed
Push — master ( 5cb2ae...9a31c8 )
by Jon
02:09
created
src/Components/Image.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
     protected $accessibilityCaption;
8 8
     protected $explicitContent;
9 9
 
10
-    protected $roles   = ['figure', 'image', 'logo', 'photo', 'portrait', 'galleryitem'];
10
+    protected $roles = ['figure', 'image', 'logo', 'photo', 'portrait', 'galleryitem'];
11 11
 
12 12
     /**
13 13
      * @param string $role
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         $component->role                 = $this->getRole();
80 80
         $component->caption              = $this->getCaption();
81 81
         $component->accessibilityCaption = $this->getAccessibilityCaption();
82
-        $component->explicitContent       = $this->getExplicitContent();
82
+        $component->explicitContent = $this->getExplicitContent();
83 83
         return $component;
84 84
     }
85 85
 }
Please login to merge, or discard this patch.
src/Components/Video.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
     protected $accessibilityCaption;
9 9
     protected $explicitContent;
10 10
 
11
-    protected $roles   = ['video', 'embedwebvideo', 'embedvideo'];
11
+    protected $roles = ['video', 'embedwebvideo', 'embedvideo'];
12 12
 
13 13
     /**
14 14
      * @param string $url
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         $component->aspectRatio          = $this->getAspectRatio();
91 91
         $component->caption              = $this->getCaption();
92 92
         $component->accessibilityCaption = $this->getAccessibilityCaption();
93
-        $component->explicitContent       = $this->getExplicitContent();
93
+        $component->explicitContent = $this->getExplicitContent();
94 94
         return $component;
95 95
     }
96 96
 }
Please login to merge, or discard this patch.
src/Components/Audio.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
     protected $explicitContent;
9 9
     protected $imageUrl;
10 10
 
11
-    protected $roles   = ['audio', 'music'];
11
+    protected $roles = ['audio', 'music'];
12 12
 
13 13
     /**
14 14
      * @param string $role
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         $component->role                 = $this->getRole();
93 93
         $component->caption              = $this->getCaption();
94 94
         $component->accessibilityCaption = $this->getAccessibilityCaption();
95
-        $component->explicitContent       = $this->getExplicitContent();
95
+        $component->explicitContent = $this->getExplicitContent();
96 96
         $component->imageUrl             = $this->getImageUrl();
97 97
         return $component;
98 98
     }
Please login to merge, or discard this patch.