Order::handle()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
nc 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
}