Completed
Push — master ( 79cc29...f46a8b )
by Navarr
03:41
created
src/AudioPlayer.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -845,7 +845,7 @@  discard block
 block discarded – undo
845 845
         $query['theme'] = $this->getTheme();
846 846
 
847 847
         $seperator = $encode ? '&' : '&';
848
-        $url .= '?'.http_build_query($query, $seperator);
848
+        $url .= '?' . http_build_query($query, $seperator);
849 849
 
850 850
         return $url;
851 851
     }
@@ -861,14 +861,14 @@  discard block
 block discarded – undo
861 861
     {
862 862
         // Build the string
863 863
         $html = '<object type="application/x-shockwave-flash"';
864
-        $html .= ' width="'.$this->getWidth().'"';
865
-        $html .= ' height="'.$this->getHeight().'"';
866
-        $html .= ' data="'.$this->getEmbedURL().'"';
864
+        $html .= ' width="' . $this->getWidth() . '"';
865
+        $html .= ' height="' . $this->getHeight() . '"';
866
+        $html .= ' data="' . $this->getEmbedURL() . '"';
867 867
         if ($this->isInvisible()) {
868 868
             $html .= ' style="visibility:hidden;display:inline;"';
869 869
         }
870 870
         $html .= '>';
871
-        $html .= '<param name="movie" value="'.$this->getEmbedURL().'" />';
871
+        $html .= '<param name="movie" value="' . $this->getEmbedURL() . '" />';
872 872
         $html .= '<param name="wmode" value="transparent" />';
873 873
         $html .= '</object>';
874 874
 
Please login to merge, or discard this patch.