Completed
Push — master ( e52dbb...b532f4 )
by smiley
02:46
created
src/Parser.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
 	/**
204 204
 	 * strng regexp bbcode killer
205 205
 	 *
206
-	 * @param string|array $bbcode BBCode as string or matches as array - callback from preg_replace_callback()
206
+	 * @param string $bbcode BBCode as string or matches as array - callback from preg_replace_callback()
207 207
 	 *
208 208
 	 * @return string
209 209
 	 * @throws \chillerlan\bbcode\BBCodeException
@@ -355,9 +355,9 @@  discard block
 block discarded – undo
355 355
 	/**
356 356
 	 * testing...
357 357
 	 *
358
-	 * @param      $preg_error
358
+	 * @param      integer $preg_error
359 359
 	 *
360
-	 * @param null $tag
360
+	 * @param string|null $tag
361 361
 	 *
362 362
 	 * @throws \chillerlan\bbcode\BBCodeException
363 363
 	 * @link https://github.com/chillerlan/bbcode/issues/1
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
 	 * @throws \chillerlan\bbcode\BBCodeException
137 137
 	 */
138 138
 	public function setOptions(ParserOptions $options){
139
-		$this->parserOptions       = $options;
139
+		$this->parserOptions = $options;
140 140
 
141 141
 		$this->loadInterfaces();
142 142
 		$this->loadModules();
Please login to merge, or discard this patch.
src/Modules/Html5/Tables.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -73,8 +73,8 @@  discard block
 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
 	/**
@@ -140,8 +140,8 @@  discard block
 block discarded – undo
140 140
 		}
141 141
 
142 142
 		return '<'.$this->tag.$colspan.$rowspan.$abbr.$this->getCellStyle().'>'
143
-		       .$this->eol($this->content, $this->eol_token)
144
-		       .'</'.$this->tag.'>';
143
+			   .$this->eol($this->content, $this->eol_token)
144
+			   .'</'.$this->tag.'>';
145 145
 	}
146 146
 
147 147
 	/**
Please login to merge, or discard this patch.