Passed
Push — master ( c01ad7...11b010 )
by Evgenii
01:14
created

src/AdminBar.php (1 issue)

1
<?php
2
3
namespace Helick\GTM;
4
5
use Helick\GTM\Contracts\Bootable;
6
7
final class AdminBar implements Bootable
8
{
9
    /**
10
     * Boot the service.
11
     *
12
     * @return void
13
     */
14
    public static function boot(): void
15
    {
16
        $self = new static;
0 ignored issues
show
The assignment to $self is dead and can be removed.
Loading history...
17
    }
18
}
19