Completed
Push — _tmp_358fcaaa69222ce78014fe992... ( 358fca )
by Kamil
514:07 queued 509:12
created
Model/TaxonInterface.php 1 patch
Doc Comments   +33 added lines patch added patch discarded remove patch
@@ -36,6 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param TaxonInterface|null $taxon
39
+     * @return void
39 40
      */
40 41
     public function setParent(?self $taxon): void;
41 42
 
@@ -58,38 +59,70 @@  discard block
 block discarded – undo
58 59
 
59 60
     /**
60 61
      * @param TaxonInterface $taxon
62
+     * @return void
61 63
      */
62 64
     public function addChild(self $taxon): void;
63 65
 
64 66
     /**
65 67
      * @param TaxonInterface $taxon
68
+     * @return void
66 69
      */
67 70
     public function removeChild(self $taxon): void;
68 71
 
69 72
     public function getName(): ?string;
70 73
 
74
+    /**
75
+     * @return void
76
+     */
71 77
     public function setName(?string $name): void;
72 78
 
73 79
     public function getFullname(string $pathDelimiter = ' / '): ?string;
74 80
 
75 81
     public function getDescription(): ?string;
76 82
 
83
+    /**
84
+     * @return void
85
+     */
77 86
     public function setDescription(?string $description): void;
78 87
 
88
+    /**
89
+     * @return integer|null
90
+     */
79 91
     public function getLeft(): ?int;
80 92
 
93
+    /**
94
+     * @return void
95
+     */
81 96
     public function setLeft(?int $left): void;
82 97
 
98
+    /**
99
+     * @return integer|null
100
+     */
83 101
     public function getRight(): ?int;
84 102
 
103
+    /**
104
+     * @return void
105
+     */
85 106
     public function setRight(?int $right): void;
86 107
 
108
+    /**
109
+     * @return integer|null
110
+     */
87 111
     public function getLevel(): ?int;
88 112
 
113
+    /**
114
+     * @return void
115
+     */
89 116
     public function setLevel(?int $level): void;
90 117
 
118
+    /**
119
+     * @return integer|null
120
+     */
91 121
     public function getPosition(): ?int;
92 122
 
123
+    /**
124
+     * @return void
125
+     */
93 126
     public function setPosition(?int $position): void;
94 127
 
95 128
     /**
Please login to merge, or discard this patch.
Model/TaxonTranslationInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -19,11 +19,23 @@
 block discarded – undo
19 19
 
20 20
 interface TaxonTranslationInterface extends SlugAwareInterface, ResourceInterface, TranslationInterface
21 21
 {
22
+    /**
23
+     * @return string|null
24
+     */
22 25
     public function getName(): ?string;
23 26
 
27
+    /**
28
+     * @return void
29
+     */
24 30
     public function setName(?string $name): void;
25 31
 
32
+    /**
33
+     * @return string|null
34
+     */
26 35
     public function getDescription(): ?string;
27 36
 
37
+    /**
38
+     * @return void
39
+     */
28 40
     public function setDescription(?string $description): void;
29 41
 }
Please login to merge, or discard this patch.