Completed
Push — master ( e8f18f...e52dbb )
by smiley
03:05
created
src/Modules/Html5/Tables.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,8 +73,8 @@
 block discarded – undo
73 73
 	protected function table():string{
74 74
 
75 75
 		return '<table'.$this->getCssClass(['bb-table'])
76
-		       .$this->getStyle(['width' => $this->getAttribute('width')])
77
-		       .'>'.$this->eol($this->content).'</table>';
76
+			   .$this->getStyle(['width' => $this->getAttribute('width')])
77
+			   .'>'.$this->eol($this->content).'</table>';
78 78
 	}
79 79
 
80 80
 	/**
Please login to merge, or discard this patch.
src/Modules/Markdown/Links.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 			return  '['.$this->content.']('.$url.')';
51 51
 		}
52 52
 
53
-		return $this->checkUrl($url) ? : '';
53
+		return $this->checkUrl($url) ?: '';
54 54
 	}
55 55
 
56 56
 }
Please login to merge, or discard this patch.