Test Failed
Push — master ( b6687a...d5e75a )
by Julien
06:32
created

TreeGenerationException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Xoco70\LaravelTournaments\Exceptions;
4
5
class TreeGenerationException extends \Exception
6
{
7
    public $message;
8
9
    /**
10
     * TreeGenerationException constructor.
11
     *
12
     * @param string
13
     */
14
    public function __construct($msg)
15
    {
16
        $this->message = $msg;
17
    }
18
}
19