Completed
Push — master ( 25d3bb...a9232e )
by smiley
04:11
created
src/Modules/BaseModuleInterface.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,6 @@
 block discarded – undo
101 101
 
102 102
 	/**
103 103
 	 * Checks if an attribute exists and if it exists as key in a whitelist
104
-
105 104
 	 * @param string $name      the desired attributes name
106 105
 	 * @param array  $whitelist an array with whitelisted key -> value pairs
107 106
 	 * @param mixed  $default   [optional] a default value in case the attribute isn't set, defaults to false
Please login to merge, or discard this patch.
src/Modules/Html5/Links.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 			return '';
41 41
 		}
42 42
 
43
-		$url = $this->checkUrl($this->bbtag() ? : $this->content);
43
+		$url = $this->checkUrl($this->bbtag() ?: $this->content);
44 44
 		$host = parse_url($url, PHP_URL_HOST);
45 45
 		$target = (!empty($host) && (isset($_SERVER['SERVER_NAME']) && $host === $_SERVER['SERVER_NAME']))
46 46
 			|| empty($host) ? 'self' : 'blank';
Please login to merge, or discard this patch.
src/Modules/Markdown/StyledText.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,9 +41,9 @@
 block discarded – undo
41 41
 
42 42
 		$str = [
43 43
 			'b'      => '**', // bold
44
-			'c'      => '`',  // inline code
44
+			'c'      => '`', // inline code
45 45
 			'del'    => '~~', // strikethrough
46
-			'i'      => '_',  // italic
46
+			'i'      => '_', // italic
47 47
 			's'      => '~~', // strikethrough
48 48
 			'strong' => '**', // bold
49 49
 		][$this->tag];
Please login to merge, or discard this patch.
src/Modules/Markup/MarkupBaseModule.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
 	 */
128 128
 	protected function getCssClass(array $additional_classes = []){
129 129
 		$classes = $this->getAttribute('class', '').' '.implode(' ', $additional_classes);
130
-		$classes =preg_replace('/[^a-z\d\- ]/i', '', $classes);
130
+		$classes = preg_replace('/[^a-z\d\- ]/i', '', $classes);
131 131
 		$classes = trim($classes);
132 132
 
133 133
 		return !empty($classes) ? ' class="'.$classes.'"' : '';
Please login to merge, or discard this patch.
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Class MarkupBaseModule
4
- *
5
- * @filesource   MarkupBaseModule.php
6
- * @created      18.10.2015
7
- * @package      chillerlan\bbcode\Modules\Markdown
8
- * @author       Smiley <[email protected]>
9
- * @copyright    2015 Smiley
10
- * @license      MIT
11
- */
3
+	 * Class MarkupBaseModule
4
+	 *
5
+	 * @filesource   MarkupBaseModule.php
6
+	 * @created      18.10.2015
7
+	 * @package      chillerlan\bbcode\Modules\Markdown
8
+	 * @author       Smiley <[email protected]>
9
+	 * @copyright    2015 Smiley
10
+	 * @license      MIT
11
+	 */
12 12
 
13 13
 namespace chillerlan\bbcode\Modules\Markup;
14 14
 
Please login to merge, or discard this patch.
src/Modules/Html5/Video.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -99,11 +99,11 @@  discard block
 block discarded – undo
99 99
 	protected function flashPlayer(string $video_url):string{
100 100
 
101 101
 		return '<div'.$this->getCssClass($this->cssclass).'>'
102
-		       .'<object type="application/x-shockwave-flash" data="'.$video_url.'">'
103
-		       .'<param name="allowfullscreen" value="true">'
104
-		       .'<param name="wmode" value="opaque" />'
105
-		       .'<param name="movie" value="'.$video_url.'" />'
106
-		       .'</object></div>';
102
+			   .'<object type="application/x-shockwave-flash" data="'.$video_url.'">'
103
+			   .'<param name="allowfullscreen" value="true">'
104
+			   .'<param name="wmode" value="opaque" />'
105
+			   .'<param name="movie" value="'.$video_url.'" />'
106
+			   .'</object></div>';
107 107
 	}
108 108
 
109 109
 	/**
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 	protected function embedPlayer(string $video_url):string{
115 115
 
116 116
 		return '<div'.$this->getCssClass($this->cssclass).'>'
117
-		       .'<iframe src="'.$video_url.'" allowfullscreen></iframe></div>';
117
+			   .'<iframe src="'.$video_url.'" allowfullscreen></iframe></div>';
118 118
 	}
119 119
 
120 120
 	/**
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	protected function html5Player():string{
124 124
 
125 125
 		return '<video src="'.$this->checkUrl($this->content).'"'
126
-		       .$this->getCssClass($this->cssclass).' preload="auto" controls="true"></video>';
126
+			   .$this->getCssClass($this->cssclass).' preload="auto" controls="true"></video>';
127 127
 	}
128 128
 
129 129
 	/**
Please login to merge, or discard this patch.
src/Parser.php 1 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.
src/Modules/BaseModuleAbstract.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,6 @@
 block discarded – undo
101 101
 
102 102
 	/**
103 103
 	 * Checks if an attribute exists and if it exists as key in a whitelist
104
-
105 104
 	 * @param string $name      the desired attributes name
106 105
 	 * @param array  $whitelist an array with whitelisted key -> value pairs
107 106
 	 * @param mixed  $default   [optional] a default value in case the attribute isn't set, defaults to false
Please login to merge, or discard this patch.