Completed
Push — master ( 25d3bb...a9232e )
by smiley
04:11
created
src/Modules/Html5/Video.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\bbcode\Modules\Html5;
14 14
 
15
-use chillerlan\bbcode\Modules\ModuleInterface;
16 15
 use chillerlan\TinyCurl\Traits\RequestTrait;
16
+use chillerlan\bbcode\Modules\ModuleInterface;
17 17
 
18 18
 /**
19 19
  * Transforms several video tags into HTML5
Please login to merge, or discard this patch.
src/Traits/ClassLoaderTrait.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
 
12 12
 namespace chillerlan\bbcode\Traits;
13 13
 
14
-use chillerlan\bbcode\BBCodeException;
15 14
 use ReflectionClass;
15
+use chillerlan\bbcode\BBCodeException;
16 16
 
17 17
 /**
18 18
  * Trait ClassLoaderTrait
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,8 @@
 block discarded – undo
32 32
 	 * @return object of type $interface
33 33
 	 * @throws \chillerlan\bbcode\BBCodeException
34 34
 	 */
35
-	protected function __loadClass(string $class, string $interface, ...$params){ // phpDocumentor stumbles across the ... syntax
35
+	protected function __loadClass(string $class, string $interface, ...$params){
36
+// phpDocumentor stumbles across the ... syntax
36 37
 		if(class_exists($class)){
37 38
 			$reflectionClass = new ReflectionClass($class);
38 39
 
Please login to merge, or discard this patch.