| Total Complexity | 4 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | class ClassMethod |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @var string |
||
| 10 | */ |
||
| 11 | private $message; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | protected $class; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | protected $method; |
||
| 22 | |||
| 23 | public function __construct(string $message, string $class, string $method) |
||
| 28 | } |
||
| 29 | |||
| 30 | public function message(): string |
||
| 31 | { |
||
| 32 | return $this->message; |
||
| 33 | } |
||
| 34 | |||
| 35 | public function class(): string |
||
| 38 | } |
||
| 39 | |||
| 40 | public function method(): string |
||
| 43 | } |
||
| 44 | } |
||
| 45 |