Passed
Pull Request — master (#19)
by Anton
03:33
created

Popup::block()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 19
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 19
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 8
nc 2
nop 0
1
<?php
2
3
/**
4
 * @package Cadmium\System\Utils
5
 * @author Anton Romanov
6
 * @copyright Copyright (c) 2015-2017, Anton Romanov
7
 * @link http://cadmium-cms.com
8
 */
9
10
namespace Utils {
11
12
	use Template;
13
14
	abstract class Popup extends Messages {
15
16
		protected static $view = 'Blocks/Utils/Popup';
17
18
		protected static $types = ['positive', 'negative'];
19
20
		protected static $items = [];
21
	}
22
}
23