Completed
Push — remove-codeowners ( c2a3b4 )
by Kamil
35:29 queued 21:05
created
src/Sylius/Component/Grid/Data/DataSourceInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
     /**
24 24
      * @param mixed $expression
25 25
      * @param string $condition
26
+     * @return void
26 27
      */
27 28
     public function restrict($expression, string $condition = self::CONDITION_AND): void;
28 29
 
Please login to merge, or discard this patch.
src/Sylius/Component/Registry/PrioritizedServiceRegistryInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @throws ExistingServiceException
28 28
      * @throws \InvalidArgumentException
29
+     * @return void
29 30
      */
30 31
     public function register($service, int $priority = 0): void;
31 32
 
@@ -33,6 +34,7 @@  discard block
 block discarded – undo
33 34
      * @param object $service
34 35
      *
35 36
      * @throws NonExistingServiceException
37
+     * @return void
36 38
      */
37 39
     public function unregister($service): void;
38 40
 
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Repository/RepositoryInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -31,11 +31,13 @@
 block discarded – undo
31 31
 
32 32
     /**
33 33
      * @param ResourceInterface $resource
34
+     * @return void
34 35
      */
35 36
     public function add(ResourceInterface $resource): void;
36 37
 
37 38
     /**
38 39
      * @param ResourceInterface $resource
40
+     * @return void
39 41
      */
40 42
     public function remove(ResourceInterface $resource): void;
41 43
 }
Please login to merge, or discard this patch.
src/Sylius/Component/User/Canonicalizer/CanonicalizerInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface CanonicalizerInterface
17 17
 {
18
+    /**
19
+     * @return string
20
+     */
18 21
     public function canonicalize(?string $string): ?string;
19 22
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Taxon/UpdatePage.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -428,6 +428,7 @@  discard block
 block discarded – undo
428 428
 
429 429
     /**
430 430
      * {@inheritdoc}
431
+     * @param string $name
431 432
      */
432 433
     protected function getElement($name, array $parameters = [])
433 434
     {
@@ -507,7 +508,7 @@  discard block
 block discarded – undo
507 508
     /**
508 509
      * @param string $type
509 510
      *
510
-     * @return NodeElement
511
+     * @return string
511 512
      */
512 513
     private function getImageElementByType($type)
513 514
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/NotificationCheckerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @throws NotificationExpectationMismatchException
23
+     * @return void
23 24
      */
24 25
     public function checkNotification(string $message, NotificationType $type): void;
25 26
 }
Please login to merge, or discard this patch.
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.