Created
January 14, 2022 19:15
-
-
Save dfelton/0111b411ff6c2fd05d17b5a712332157 to your computer and use it in GitHub Desktop.
Example of an informative php docblock
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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