Passed
Push — master ( 6b0e6b...43789e )
by Stephen
03:30
created

TrackTrafficListener   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 19
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 3 1
1
<?php
2
3
namespace Sfneal\Tracking\Listeners;
4
5
use Sfneal\Listeners\AbstractListener;
6
use Sfneal\Tracking\Actions\TrackTrafficAction;
7
use Sfneal\Tracking\Events\TrackTrafficEvent;
8
9
class TrackTrafficListener extends AbstractListener
10
{
11
    /**
12
     * @var string Queue to use
13
     */
14
    public $queue = 'traffic';
15
16
    /**
17
     * Call the TrackTrafficAction.
18
     *
19
     * Retrieve tracking data and then do something with it.
20
     *
21
     * @param TrackTrafficEvent $event
22
     *
23
     * @return void
24
     */
25
    public function handle(TrackTrafficEvent $event)
26
    {
27
        TrackTrafficAction::execute($event->tracking);
28
    }
29
}
30