SftpFactory   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
Duplicated Lines 100 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 21
loc 21
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A create() 13 13 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
/**
3
 * SftpFactory.php
4
 *
5
 * @copyright      More in license.md
6
 * @license        https://www.ipublikuj.eu
7
 * @author         Adam Kadlec <[email protected]>
8
 * @package        iPublikuj:Flysystem!
9
 * @subpackage     Adapters
10
 * @since          1.0.0
11
 *
12
 * @date           23.04.16
13
 */
14
15
declare(strict_types = 1);
16
17
namespace IPub\Flysystem\Factories\Adapters;
18
19
use Nette\Utils;
20
21
use League\Flysystem\Sftp;
22
23
/**
24
 * SFTP adapter filesystem factory
25
 *
26
 * @package        iPublikuj:Flysystem!
27
 * @subpackage     Adapters
28
 *
29
 * @author         Adam Kadlec <[email protected]>
30
 */
31 View Code Duplication
class SftpFactory
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
32
{
33
	/**
34
	 * @param Utils\ArrayHash $parameters
35
	 *
36
	 * @return Sftp\SftpAdapter
37
	 */
38
	public static function create(Utils\ArrayHash $parameters) : Sftp\SftpAdapter
39
	{
40
		return new Sftp\SftpAdapter([
41
			'host'       => $parameters->host,
42
			'port'       => $parameters->port,
43
			'username'   => $parameters->username,
44
			'password'   => $parameters->password,
45
			'privateKey' => $parameters->privateKey,
46
47
			'root'    => $parameters->root,
48
			'timeout' => $parameters->timeout,
49
		]);
50
	}
51
}
52