AS I was looking at code in Laravel 5 project, I encountered with a class Like below --
class Abc extends Command implements SelfHandling, ShouldBeQueued
{
}
And where Interfaces are like below -
interface SelfHandling {}
interface ShouldBeQueued {}
I got confused if it does not have any methods then what's the use of these interfaces ?