getServiceDescription() public method

Retrieve a string representation of a service.
public getServiceDescription ( mixed $service ) : string
$service mixed
return string
 public function testAnObjectServiceDescriptionCanBeRetrieved()
 {
     $command = new Command();
     $obj = new stdClass();
     $description = $command->getServiceDescription($obj);
     $this->assertEquals('stdClass', $description);
 }