Completed
Push — master ( 51eb0e...e4cd15 )
by smiley
01:38
created
src/BBCode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@
 block discarded – undo
208 208
 	}
209 209
 
210 210
 	/**
211
-	 * @param $bbcode
211
+	 * @param string $bbcode
212 212
 	 *
213 213
 	 * @return string
214 214
 	 */
Please login to merge, or discard this patch.
src/Output/BBCodeModuleAbstract.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\BBCode\Output;
14 14
 
15
-use chillerlan\Traits\ContainerInterface;
16 15
 use Psr\Log\LoggerInterface;
17 16
 use Psr\SimpleCache\CacheInterface;
17
+use chillerlan\Traits\ContainerInterface;
18 18
 
19 19
 abstract class BBCodeModuleAbstract implements BBCodeModuleInterface{
20 20
 
Please login to merge, or discard this patch.
src/Output/BBCodeModuleInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
 	 * @param \chillerlan\Traits\ContainerInterface $options
25 25
 	 * @param \Psr\SimpleCache\CacheInterface       $cache
26 26
 	 * @param \Psr\Log\LoggerInterface              $logger
27
+	 * @return void
27 28
 	 */
28 29
 	public function __construct(ContainerInterface $options, CacheInterface $cache, LoggerInterface $logger);
29 30
 
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\BBCode\Output;
14 14
 
15
-use chillerlan\Traits\ContainerInterface;
16 15
 use Psr\Log\LoggerInterface;
17 16
 use Psr\SimpleCache\CacheInterface;
17
+use chillerlan\Traits\ContainerInterface;
18 18
 
19 19
 interface BBCodeModuleInterface{
20 20
 
Please login to merge, or discard this patch.
src/Output/BBCodeOutputInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
 	 * @param \chillerlan\Traits\ContainerInterface $options
25 25
 	 * @param \Psr\SimpleCache\CacheInterface  $cache
26 26
 	 * @param \Psr\Log\LoggerInterface         $logger
27
+	 * @return void
27 28
 	 */
28 29
 	public function __construct(ContainerInterface $options, CacheInterface $cache, LoggerInterface $logger);
29 30
 
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\BBCode\Output;
14 14
 
15
-use chillerlan\Traits\ContainerInterface;
16 15
 use Psr\Log\LoggerInterface;
17 16
 use Psr\SimpleCache\CacheInterface;
17
+use chillerlan\Traits\ContainerInterface;
18 18
 
19 19
 interface BBCodeOutputInterface{
20 20
 
Please login to merge, or discard this patch.
src/ParserMiddlewareInterface.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\BBCode;
14 14
 
15
-use chillerlan\Traits\ContainerInterface;
16 15
 use Psr\Log\LoggerInterface;
17 16
 use Psr\SimpleCache\CacheInterface;
17
+use chillerlan\Traits\ContainerInterface;
18 18
 
19 19
 interface ParserMiddlewareInterface{
20 20
 
Please login to merge, or discard this patch.