Skip to content

Instantly share code, notes, and snippets.

@dfelton
Created January 14, 2022 19:15
Show Gist options
  • Save dfelton/0111b411ff6c2fd05d17b5a712332157 to your computer and use it in GitHub Desktop.
Save dfelton/0111b411ff6c2fd05d17b5a712332157 to your computer and use it in GitHub Desktop.
Example of an informative php docblock
<?php
declare(strict_types=1);
namespace Kobens\Gemini\Report\YearToDateVolume;
interface DataProviderInterface
{
/**
* @return \Kobens\Gemini\ApiModels\TradeInterface[]
*/
public function getTrades(string $symbol, int $year): \Generator;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment