Completed
Push — master ( abb0dc...ba3fb5 )
by Saulius
12s queued 10s
created

WidgetFactoryIsNullException

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 1 Features 0
Metric Value
eloc 1
dl 0
loc 2
ccs 0
cts 0
cp 0
c 1
b 1
f 0
wmc 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Sauls\Component\Widget\Exception;
6
7
use RuntimeException;
8
9
class WidgetFactoryIsNullException extends RuntimeException
10
{
11
}
12