Completed
Push — master ( 1e1aac...d6bf2c )
by C
05:36
created
src/Tartana/Component/Decrypter/DecrypterFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 	/**
10 10
 	 *
11
-	 * @param string $filename
11
+	 * @param string $fileName
12 12
 	 * @return \Tartana\Component\Decrypter\DecrypterInterface
13 13
 	 */
14 14
 	public function createDecryptor ($fileName)
Please login to merge, or discard this patch.
src/Tartana/Component/Decrypter/DecrypterInterface.php 2 patches
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,11 +9,13 @@
 block discarded – undo
9 9
 	/**
10 10
 	 * Decrypts the given string or path.
11 11
 	 *
12
-	 * @param string $dlc
13 12
 	 * @return string[]
14 13
 	 * @throws \RuntimeException if something goes wrong
15 14
 	 */
16 15
 	public function decrypt ($string);
17 16
 
17
+	/**
18
+	 * @return void
19
+	 */
18 20
 	public function setLogger (LoggerInterface $logger = null);
19 21
 }
20 22
\ No newline at end of file
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Tartana\Component\Decrypter;
3
-use Monolog\Logger;
4 3
 use Psr\Log\LoggerInterface;
5 4
 
6 5
 interface DecrypterInterface
Please login to merge, or discard this patch.