Completed
Pull Request — master (#8)
by Tomáš
02:25
created
src/Definitions/Currency.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
      *
225 225
      * @var string
226 226
      */
227
-    public const TRY = 'TRY';
227
+    public const try = 'TRY';
228 228
     
229 229
     /**
230 230
      * Dolar
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
             self::SEK,
277 277
             self::CHF,
278 278
             self::THB,
279
-            self::TRY,
279
+            self::try,
280 280
             self::USD,
281 281
             self::GBP,
282 282
         ];
Please login to merge, or discard this patch.
src/Services/Balikobot.php 1 patch
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
     /**
347 347
      * Get all available branches
348 348
      *
349
-     * @return \Generator|\Inspirum\Balikobot\Model\Values\Branch[]
349
+     * @return \Generator
350 350
      *
351 351
      * @throws \Inspirum\Balikobot\Contracts\ExceptionInterface
352 352
      */
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
      *
363 363
      * @param array<string> $countries
364 364
      *
365
-     * @return \Generator|\Inspirum\Balikobot\Model\Values\Branch[]
365
+     * @return \Generator
366 366
      *
367 367
      * @throws \Inspirum\Balikobot\Contracts\ExceptionInterface
368 368
      */
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
      *
379 379
      * @param string $shipper
380 380
      *
381
-     * @return \Generator|\Inspirum\Balikobot\Model\Values\Branch[]
381
+     * @return \Generator
382 382
      *
383 383
      * @throws \Inspirum\Balikobot\Contracts\ExceptionInterface
384 384
      */
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
      * @param string        $shipper
396 396
      * @param array<string> $countries
397 397
      *
398
-     * @return \Generator|\Inspirum\Balikobot\Model\Values\Branch[]
398
+     * @return \Generator
399 399
      *
400 400
      * @throws \Inspirum\Balikobot\Contracts\ExceptionInterface
401 401
      */
@@ -427,7 +427,7 @@  discard block
 block discarded – undo
427 427
      * @param string|null   $service
428 428
      * @param array<string> $countries
429 429
      *
430
-     * @return \Generator|\Inspirum\Balikobot\Model\Values\Branch[]
430
+     * @return \Generator
431 431
      *
432 432
      * @throws \Inspirum\Balikobot\Contracts\ExceptionInterface
433 433
      */
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
      * @param string|null   $service
451 451
      * @param array<string> $countries
452 452
      *
453
-     * @return \Generator|\Inspirum\Balikobot\Model\Values\Branch[]
453
+     * @return \Generator
454 454
      *
455 455
      * @throws \Inspirum\Balikobot\Contracts\ExceptionInterface
456 456
      */
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
      * @param string|null $service
476 476
      * @param string|null $country
477 477
      *
478
-     * @return \Generator|\Inspirum\Balikobot\Model\Values\Branch[]
478
+     * @return \Generator
479 479
      *
480 480
      * @throws \Inspirum\Balikobot\Contracts\ExceptionInterface
481 481
      */
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
      * @param float|null  $radius
501 501
      * @param string|null $type
502 502
      *
503
-     * @return \Generator|\Inspirum\Balikobot\Model\Values\Branch[]
503
+     * @return \Generator
504 504
      *
505 505
      * @throws \Inspirum\Balikobot\Contracts\ExceptionInterface
506 506
      */
@@ -565,7 +565,7 @@  discard block
 block discarded – undo
565 565
      * @param string      $service
566 566
      * @param string|null $country
567 567
      *
568
-     * @return \Generator|\Inspirum\Balikobot\Model\Values\PostCode[]
568
+     * @return \Generator
569 569
      *
570 570
      * @throws \Inspirum\Balikobot\Contracts\ExceptionInterface
571 571
      */
Please login to merge, or discard this patch.
src/Model/Values/Branch.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -254,7 +254,7 @@
 block discarded – undo
254 254
         $this->shipper              = $shipper;
255 255
         $this->service              = $service;
256 256
         $this->id                   = $id;
257
-        $this->uid                   = $uid;
257
+        $this->uid = $uid;
258 258
         $this->type                 = $type;
259 259
         $this->name                 = $name;
260 260
         $this->city                 = $city;
Please login to merge, or discard this patch.