Completed
Push — master ( 3e6d98...08a8d6 )
by Ricardo
04:32
created
src/Actions/Instagram/Instagram.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
31 31
         return $this->userName;
32 32
     }
33 33
 
34
+    /**
35
+     * @param string $targets
36
+     */
34 37
     public function prepare($targets)
35 38
     {
36 39
         if (is_string($targets)) {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Finder\Actions\Instagram;
4 4
 
5
-use Illuminate\Support\Facades\Facade;
6
-use Phpfastcache\Helper\Psr16Adapter;
7 5
 use Integrations\Connectors\Connector;
8 6
 
9 7
 class Instagram extends Connector
Please login to merge, or discard this patch.
src/Console/Commands/Readers/IcsReader.php 1 patch
Unused Use Statements   +1 added lines, -7 removed lines patch added patch discarded remove patch
@@ -2,15 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Finder\Console\Commands\Readers;
4 4
 
5
-use File;
5
+use Finder\Readers\iCalEasyReader;
6 6
 use Illuminate\Console\Command;
7 7
 use Illuminate\Filesystem\Filesystem;
8
-use Illuminate\View\Compilers\BladeCompiler;
9
-use DirectoryIterator;
10
-use Finder\Spider\Registrator\PhotoRegistrator;
11
-use Muleta\Utils\Extratores\FileExtractor;
12
-use Support\Components\Coders\Parser\ParseClass;
13
-use Finder\Readers\iCalEasyReader;
14 8
 
15 9
 class IcsReader extends Command
16 10
 {
Please login to merge, or discard this patch.
src/Console/Commands/Verify/StorageAndNotImported.php 1 patch
Unused Use Statements   +1 added lines, -7 removed lines patch added patch discarded remove patch
@@ -5,15 +5,9 @@
 block discarded – undo
5 5
 
6 6
 namespace Finder\Console\Commands\Verify;
7 7
 
8
-use File;
8
+use Finder\Readers\iCalEasyReader;
9 9
 use Illuminate\Console\Command;
10 10
 use Illuminate\Filesystem\Filesystem;
11
-use Illuminate\View\Compilers\BladeCompiler;
12
-use DirectoryIterator;
13
-use Finder\Spider\Registrator\PhotoRegistrator;
14
-use Muleta\Utils\Extratores\FileExtractor;
15
-use Support\Components\Coders\Parser\ParseClass;
16
-use Finder\Readers\iCalEasyReader;
17 11
 
18 12
 class StorageAndNotImported extends Command
19 13
 {
Please login to merge, or discard this patch.
src/Pipelines/Finder/Directory.php 1 patch
Unused Use Statements   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -3,14 +3,13 @@
 block discarded – undo
3 3
 namespace Finder\Pipelines\Finder;
4 4
 
5 5
 use League\Pipeline\Pipeline;
6
-use Operador\Contracts\StageInterface;
7 6
 
8
-use Symfony\Component\Finder\Finder;
9
-use Support\Helps\DebugHelper;
10
-use Operador\Contracts\Stage as StageBase;
11
-use Finder\Pipelines\Builders\FileBuilder;
12 7
 use Finder\Pipelines\Builders\DirectoryBuilder;
8
+use Finder\Pipelines\Builders\FileBuilder;
13 9
 use Finder\Pipelines\Builders\ProjectBuilder;
10
+use Operador\Contracts\Stage as StageBase;
11
+use Support\Helps\DebugHelper;
12
+use Symfony\Component\Finder\Finder;
14 13
 
15 14
 class Directory extends StageBase
16 15
 {
Please login to merge, or discard this patch.
src/Pipelines/Finder/Repository.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Finder\Pipelines\Finder;
4 4
 
5
-use Operador\Contracts\Stage as StageBase;
5
+use Fabrica\Helps\Git\GitRepo;
6 6
 use Fabrica\Models\Code\Commit;
7 7
 use Illuminate\Support\Collection;
8
-use Fabrica\Helps\Git\GitRepo;
8
+use Operador\Contracts\Stage as StageBase;
9 9
 
10 10
 class Repository extends StageBase
11 11
 {
Please login to merge, or discard this patch.
src/Readers/iCalEasyReader.php 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@  discard block
 block discarded – undo
20 20
 	private $_lastitem = null;
21 21
 	private $_ignored = false;
22 22
 
23
+	/**
24
+	 * @param string $data
25
+	 */
23 26
 	public function &load($data)
24 27
 	{
25 28
 		$this->ical = false;
@@ -145,6 +148,10 @@  discard block
 block discarded – undo
145 148
 		return $value;
146 149
 	}
147 150
 
151
+	/**
152
+	 * @param string|null $group
153
+	 * @param null|string $parentgroup
154
+	 */
148 155
 	public function addItem($line, $group, $parentgroup)
149 156
 	{
150 157
 		$line = $this->transformLine($line);
@@ -215,6 +222,9 @@  discard block
 block discarded – undo
215 222
 		}
216 223
 	}
217 224
 
225
+	/**
226
+	 * @return string
227
+	 */
218 228
 	public function transformLine($line)
219 229
 	{
220 230
 		$patterns = ['\\\\[n]', '\\\\[t]', '\\\\,', '\\\\;'];
@@ -223,6 +233,10 @@  discard block
 block discarded – undo
223 233
 		return $this->mb_eregi_replace_all($patterns, $replacements, $line);
224 234
 	}
225 235
 
236
+	/**
237
+	 * @param string[] $pattern
238
+	 * @param string[] $replacement
239
+	 */
226 240
 	public function mb_eregi_replace_all($pattern, $replacement, $string)
227 241
 	{
228 242
 		if (is_array($pattern) and is_array($replacement)) {
Please login to merge, or discard this patch.