Completed
Push — master ( 05414b...3d6861 )
by Nikola
02:50
created
RunOpenCode/ExchangeRate/Source/NationalBankOfSerbiaDomCrawlerSource.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -143,6 +143,7 @@
 block discarded – undo
143 143
 
144 144
     /**
145 145
      * @param \DateTime $date
146
+     * @param string $rateType
146 147
      * @return RateInterface[]
147 148
      * @throws SourceNotAvailableException
148 149
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
  */
10 10
 namespace RunOpenCode\ExchangeRate\Source;
11 11
 
12
-use GuzzleHttp\Client as GuzzleClient;
13 12
 use GuzzleHttp\Client;
14 13
 use GuzzleHttp\Cookie\CookieJar;
15 14
 use RunOpenCode\ExchangeRate\Contract\RateInterface;
Please login to merge, or discard this patch.
src/RunOpenCode/ExchangeRate/Repository/FileRepository.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -224,9 +224,9 @@
 block discarded – undo
224 224
      * Builds rate key to speed up search.
225 225
      *
226 226
      * @param null $currencyCode
227
-     * @param null $date
228
-     * @param null $rateType
229
-     * @param null $sourceName
227
+     * @param \DateTime $date
228
+     * @param string $rateType
229
+     * @param string $sourceName
230 230
      * @return string
231 231
      */
232 232
     protected function getRateKey($currencyCode = null, $date = null, $rateType = null, $sourceName = null)
Please login to merge, or discard this patch.