Passed
Pull Request — 8.x-2.x (#26)
by Frédéric G.
02:49
created

EventTemplateStorageSchema   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace Drupal\mongodb_watchdog\Model;
4
5
use Doctrine\Common\Util\Debug;
6
use Drupal\mongodb_storage\Model\ContentEntityStorageSchema;
7
8
class EventTemplateStorageSchema extends ContentEntityStorageSchema {
9
10
  public function __construct() {
11
    echo __METHOD__ . "\n";
12
    Debug::dump(func_get_args());
13
    parent::__construct(...func_get_args());
14
  }
15
}
16