EmptyToken::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 4
rs 10
1
<?php
2
3
/*
4
 * To change this license header, choose License Headers in Project Properties.
5
 * To change this template file, choose Tools | Templates
6
 * and open the template in the editor.
7
 */
8
9
namespace Maslosoft\Whitelist\Tokenizer\Tokens;
10
11
use Maslosoft\Whitelist\Interfaces\TokenInterface;
12
use Maslosoft\Whitelist\Tokenizer\AbstractToken;
13
14
/**
15
 * EmptyToken
16
 *
17
 * @author Piotr Maselkowski <pmaselkowski at gmail.com>
18
 */
19
class EmptyToken extends AbstractToken implements TokenInterface
20
{
21
22
	public function __construct()
23
	{
24
		$this->type = TokenInterface::TypeEmpty;
25
		$this->value = '';
26
	}
27
28
}
29