ProcessManager   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A signals() 0 4 1
1
<?php
2
namespace Workana\AsyncJobs\Process;
3
4
use Ko\ProcessManager as PM;
5
6
/**
7
 * Internal Process Manager
8
 *
9
 * @author Carlos Frutos <[email protected]>
10
 */
11
class ProcessManager extends PM
12
{
13
    /**
14
     * Get signal handler
15
     *
16
     * @return SignalHandler
17
     */
18
    public function signals()
19
    {
20
        return $this->signalHandler;
21
    }
22
}