Completed
Push — master ( a52e49...d03ec2 )
by Iman
09:53
created

AllEventManagers   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 5
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A start() 0 6 1
1
<?php
2
3
namespace Imanghafoori\HeyMan\WatchingStrategies;
4
5
6
class AllEventManagers
7
{
8
    public static function start()
9
    {
10
        app(RouterEventManager::class)->start();
11
        app(EventManager::class)->start();
12
        app(ViewEventManager::class)->start();
13
        app(EloquentEventsManager::class)->start();
14
    }
15
}