Completed
Push — 1.1 ( 2ce672...0f9bfd )
by Kamil
47:51
created
src/Sylius/Behat/Page/Admin/Order/IndexPageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -19,31 +19,37 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * @param string $dateTime
22
+     * @return void
22 23
      */
23 24
     public function specifyFilterDateFrom(string $dateTime);
24 25
 
25 26
     /**
26 27
      * @param string $dateTime
28
+     * @return void
27 29
      */
28 30
     public function specifyFilterDateTo(string $dateTime);
29 31
 
30 32
     /**
31 33
      * @param string $channelName
34
+     * @return void
32 35
      */
33 36
     public function chooseChannelFilter($channelName);
34 37
 
35 38
     /**
36 39
      * @param string $currencyName
40
+     * @return void
37 41
      */
38 42
     public function chooseCurrencyFilter($currencyName);
39 43
 
40 44
     /**
41 45
      * @param string $total
46
+     * @return void
42 47
      */
43 48
     public function specifyFilterTotalGreaterThan($total);
44 49
 
45 50
     /**
46 51
      * @param string $total
52
+     * @return void
47 53
      */
48 54
     public function specifyFilterTotalLessThan($total);
49 55
 }
Please login to merge, or discard this patch.
Sylius/Bundle/GridBundle/Form/DataTransformer/DateTimeFilterTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Sylius\Bundle\GridBundle\Form\DataTransformer;
6 6
 
Please login to merge, or discard this patch.