Passed
Pull Request — main (#49)
by Simon
01:49 queued 42s
created

ElasticLogger::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 0
dl 0
loc 2
rs 10
c 0
b 0
f 0
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
 *
19
 * @package Firesphere\Elastic\Search
20
 */
21
class ElasticLogger extends SearchLogger
22
{
23
    public function __construct()
24
    {
25
    }
26
}
27