Inheritance: extends Illuminate\Console\Command
 public function testThatAServiceCanBeIdentifiedAsAnObject()
 {
     $command = new Command();
     $result = $command->serviceIsObject(3);
     $this->assertFalse($result);
     $result = $command->serviceIsObject(new stdClass());
     $this->assertTrue($result);
 }