Completed
Push — revert-bc-break ( e79786...ad54ae )
by Kamil
56:16 queued 50:11
created
src/Sylius/Component/Channel/Model/ChannelInterface.php 1 patch
Doc Comments   +34 added lines patch added patch discarded remove patch
@@ -24,23 +24,57 @@
 block discarded – undo
24 24
     ToggleableInterface,
25 25
     ResourceInterface
26 26
 {
27
+    /**
28
+     * @return string|null
29
+     */
27 30
     public function getName(): ?string;
28 31
 
32
+    /**
33
+     * @param string $name
34
+     *
35
+     * @return void
36
+     */
29 37
     public function setName(?string $name): void;
30 38
 
39
+    /**
40
+     * @return string|null
41
+     */
31 42
     public function getDescription(): ?string;
32 43
 
44
+    /**
45
+     * @return void
46
+     */
33 47
     public function setDescription(?string $description): void;
34 48
 
49
+    /**
50
+     * @return string|null
51
+     */
35 52
     public function getHostname(): ?string;
36 53
 
54
+    /**
55
+     * @return void
56
+     */
37 57
     public function setHostname(?string $hostname): void;
38 58
 
59
+    /**
60
+     * @return string|null
61
+     */
39 62
     public function getColor(): ?string;
40 63
 
64
+    /**
65
+     * @return void
66
+     */
41 67
     public function setColor(?string $color): void;
42 68
 
69
+    /**
70
+     * @return string|null
71
+     */
43 72
     public function getType(): ?string;
44 73
 
74
+    /**
75
+     * @param string $type
76
+     *
77
+     * @return void
78
+     */
45 79
     public function setType(?string $type): void;
46 80
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ChannelBundle/Form/Type/ChannelType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
                 'label' => 'sylius.form.channel.color',
52 52
                 'required' => false,
53 53
             ])
54
-            ->add('type', ChoiceType::class,[
54
+            ->add('type', ChoiceType::class, [
55 55
                 'label' => 'sylius.form.channel.type',
56 56
                 'required' => false,
57 57
                 'choices' => [
Please login to merge, or discard this patch.