Completed
Pull Request — 8.x-2.x (#26)
by Frédéric G.
03:20
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 {
0 ignored issues
show
introduced by
Missing class doc comment
Loading history...
9
10
  public function __construct() {
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
11
    echo __METHOD__ . "\n";
12
    Debug::dump(func_get_args());
0 ignored issues
show
introduced by
Call to debug function Debug::dump() must be removed
Loading history...
13
    parent::__construct(...func_get_args());
14
  }
15
}
16