Order   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
handle() 0 1 ?
1
<?php
2
3
namespace App\Orders;
4
5
abstract class Order
6
{
7
    /**
8
     * Order constructor.
9
     */
10
    public function __construct()
11
    {
12
        $this->handle();
13
    }
14
15
    /**
16
     * Method witch run's on serialize object.
17
     *
18
     * @return void.
0 ignored issues
show
Documentation introduced by
The doc-type void. could not be parsed: Unknown type name "void." at position 0. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
19
     */
20
    abstract public function handle();
21
}