@@ -9,8 +9,6 @@ trait InteractsWithTickets
99{
1010 /**
1111 * Archive the ticket
12- *
13- * @return self
1412 */
1513 public function archive (): self
1614 {
@@ -23,8 +21,6 @@ public function archive(): self
2321
2422 /**
2523 * Close the ticket
26- *
27- * @return self
2824 */
2925 public function close (): self
3026 {
@@ -37,8 +33,6 @@ public function close(): self
3733
3834 /**
3935 * Reopen the ticket
40- *
41- * @return self
4236 */
4337 public function reopen (): self
4438 {
@@ -51,8 +45,6 @@ public function reopen(): self
5145
5246 /**
5347 * Determine if the ticket is archived
54- *
55- * @return bool
5648 */
5749 public function isArchived (): bool
5850 {
@@ -61,8 +53,6 @@ public function isArchived(): bool
6153
6254 /**
6355 * Determine if the ticket is open
64- *
65- * @return bool
6656 */
6757 public function isOpen (): bool
6858 {
@@ -71,8 +61,6 @@ public function isOpen(): bool
7161
7262 /**
7363 * Determine if the ticket is closed
74- *
75- * @return bool
7664 */
7765 public function isClosed (): bool
7866 {
@@ -81,8 +69,6 @@ public function isClosed(): bool
8169
8270 /**
8371 * Determine if the ticket is resolved
84- *
85- * @return bool
8672 */
8773 public function isResolved (): bool
8874 {
@@ -91,8 +77,6 @@ public function isResolved(): bool
9177
9278 /**
9379 * Determine if the ticket is unresolved
94- *
95- * @return bool
9680 */
9781 public function isUnresolved (): bool
9882 {
@@ -101,8 +85,6 @@ public function isUnresolved(): bool
10185
10286 /**
10387 * Determine if the ticket is locked
104- *
105- * @return bool
10688 */
10789 public function isLocked (): bool
10890 {
@@ -111,8 +93,6 @@ public function isLocked(): bool
11193
11294 /**
11395 * Determine if the ticket is unresolved
114- *
115- * @return bool
11696 */
11797 public function isUnlocked (): bool
11898 {
@@ -121,8 +101,6 @@ public function isUnlocked(): bool
121101
122102 /**
123103 * Mark the ticket as resolved
124- *
125- * @return self
126104 */
127105 public function markAsResolved (): self
128106 {
@@ -135,8 +113,6 @@ public function markAsResolved(): self
135113
136114 /**
137115 * Mark the ticket as locked
138- *
139- * @return self
140116 */
141117 public function markAsLocked (): self
142118 {
@@ -149,8 +125,6 @@ public function markAsLocked(): self
149125
150126 /**
151127 * Mark the ticket as locked
152- *
153- * @return self
154128 */
155129 public function markAsUnlocked (): self
156130 {
@@ -163,8 +137,6 @@ public function markAsUnlocked(): self
163137
164138 /**
165139 * Mark the ticket as archived
166- *
167- * @return self
168140 */
169141 public function markAsArchived (): self
170142 {
@@ -175,8 +147,6 @@ public function markAsArchived(): self
175147
176148 /**
177149 * Close the ticket and mark it as resolved
178- *
179- * @return self
180150 */
181151 public function closeAsResolved (): self
182152 {
@@ -190,8 +160,6 @@ public function closeAsResolved(): self
190160
191161 /**
192162 * Close the ticket and mark it as unresolved
193- *
194- * @return self
195163 */
196164 public function closeAsUnresolved (): self
197165 {
@@ -205,8 +173,6 @@ public function closeAsUnresolved(): self
205173
206174 /**
207175 * Reopen the ticket and mark it as resolved
208- *
209- * @return self
210176 */
211177 public function reopenAsUnresolved (): self
212178 {
@@ -220,9 +186,6 @@ public function reopenAsUnresolved(): self
220186
221187 /**
222188 * Add new message on an existing ticket as a custom user
223- *
224- * @param \Illuminate\Database\Eloquent\Model|int $user
225- * @return self
226189 */
227190 public function assignTo (Model |int $ user ): self
228191 {
0 commit comments