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

TrackTrafficListener::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
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