ElasticLogger   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
/**
3
 * class SearchLogger|Firesphere\ElasticSearch\Helpers\SearchLogger Log errors to the Database
4
 *
5
 * @package Firesphere\Elastic\Search
6
 * @author Simon `Firesphere` Erkelens; Marco `Sheepy` Hermo
7
 * @copyright Copyright (c) 2018 - now() Firesphere & Sheepy
8
 */
9
10
namespace Firesphere\ElasticSearch\Helpers;
11
12
use Firesphere\SearchBackend\Helpers\SearchLogger;
13
14
/**
15
 * Class SearchLogger
16
 *
17
 * Log information from Elastic to the CMS for reference
18
 * @todo
19
 * @package Firesphere\Elastic\Search
20
 */
21
class ElasticLogger extends SearchLogger
22
{
23
    public function __construct()
24
    {
25
    }
26
}
27