Passed
Push — master ( a025c6...613f63 )
by Josh
03:19
created

AbstractSiteHelper   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
eloc 1
c 1
b 0
f 1
dl 0
loc 4
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php declare(strict_types=1);
2
3
/**
4
* @package   s9e\TextFormatter
5
* @copyright Copyright (c) The s9e authors
6
* @license   http://www.opensource.org/licenses/mit-license.php The MIT License
7
*/
8
namespace s9e\TextFormatter\Plugins\MediaEmbed\Configurator\SiteHelpers;
9
10
use s9e\TextFormatter\Configurator;
11
12
abstract class AbstractSiteHelper
13
{
14
	public function __construct(protected Configurator $configurator)
15
	{
16
	}
17
}