Test Setup Failed
Push — master ( 73b0fc...7f61e4 )
by Sugeng
02:53
created

Module::init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 5
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
namespace diecoding\pdfjs;
4
5
/**
6
 * PdfJs Module Viewer.
7
 * 
8
 * @link [sugeng-sulistiyawan.github.io](sugeng-sulistiyawan.github.io)
9
 * @author Sugeng Sulistiyawan <[email protected]>
10
 * @copyright Copyright (c) 2024
11
 */
12
class Module extends \yii\base\Module
13
{
14
	/**
15
	 * @var array
16
	 */
17
	public $defaultOptions = [];
18
19
	/**
20
	 * @var array
21
	 */
22
	public $defaultSections = [];
23
24
	/**
25
	 * @inheritdoc
26
	 */
27
	public $controllerNamespace = 'diecoding\pdfjs\controllers';
28
}
29