Completed
Push — master ( fc65a2...436b18 )
by Olivier
03:18 queued 01:41
created

Errors::rewind()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 15
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 15
rs 9.4285
cc 3
eloc 7
nc 3
nop 0
1
<?php
2
3
/*
4
 * This file is part of the ICanBoogie package.
5
 *
6
 * (c) Olivier Laviale <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace ICanBoogie;
13
14
/**
15
 * @deprecated
16
 *
17
 * @see ErrorCollection
18
 *
19
 * @codeCoverageIgnore
20
 */
21
class Errors extends ErrorCollection
22
{
23
	/**
24
	 * @deprecated
25
	 */
26
	static public $message_constructor;
27
}
28