Ignore   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 22
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A open() 0 4 1
A close() 0 4 1
1
<?php
2
3
/**
4
 * This software package is licensed under `AGPL, Commercial` license[s].
5
 *
6
 * @package maslosoft/zamm
7
 * @license AGPL, Commercial
8
 *
9
 * @copyright Copyright (c) Peter Maselkowski <[email protected]>
10
 * @link https://maslosoft.com/zamm/
11
 */
12
13
namespace Maslosoft\Zamm;
14
15
/**
16
 * Ignore documentation code fragments.
17
 * Some parts of documentation can contain php code snippets.
18
 * This would be processed by Zamm. Use this class to ignore those parts.
19
 *
20
 * @author Piotr Maselkowski <pmaselkowski at gmail.com>
21
 */
22
class Ignore
23
{
24
	/**
25
	 * Open php part ignored by php interpreter.
26
	 * All php code after this tag and before `close` tag will be treated as plain text.
27
	 * It will not be interpreted by php.
28
	 * @todo Implement this
29
	 */
30
	public static function open()
31
	{
32
		
33
	}
34
	
35
	/**
36
	 * Close php part ignored by php interpreter.
37
	 * @todo Implement this
38
	 */
39
	public static function close()
40
	{
41
		
42
	}
43
}
44