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

EventTemplateStorageSchema::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 5
rs 10
c 0
b 0
f 0
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