function it_needs_line_after_deprecation_if_deprecation_and_api_are_defined(ApiTag $apiTag, Description $description, DeprecationTag $deprecationTag, StructurePhpdoc $structurePhpdoc)
 {
     $structurePhpdoc->getApiTag()->willReturn($apiTag);
     $structurePhpdoc->getDescription()->willReturn($description);
     $structurePhpdoc->getDeprecationTag()->willReturn($deprecationTag);
     $this->needsLineAfter($structurePhpdoc, 'deprecation_tag')->shouldBe(true);
 }