What is ::class in PHP?
22:10 10 Jun 2015

What is the ::class notation in PHP?

A quick Google search returns nothing because of the nature of the syntax.

colon colon class

What's the advantage of using this notation?

protected $commands = [
    \App\Console\Commands\Inspire::class,
];
php class