Completed
Pull Request — 8.x-2.x (#26)
by Frédéric G.
03:20
created

EventTemplateStorageSchema::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

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