@@ -207,7 +207,7 @@ public function update($id, array $params)
207
207
*
208
208
* @return true if the request was successful
209
209
*/
210
- public function close ($ projectIdentifier ): bool
210
+ final public function close ($ projectIdentifier ): bool
211
211
{
212
212
if (! is_int ($ projectIdentifier ) && ! is_string ($ projectIdentifier )) {
213
213
throw new InvalidArgumentException (sprintf (
@@ -242,7 +242,7 @@ public function close($projectIdentifier): bool
242
242
*
243
243
* @return true if the request was successful
244
244
*/
245
- public function reopen ($ projectIdentifier ): bool
245
+ final public function reopen ($ projectIdentifier ): bool
246
246
{
247
247
if (! is_int ($ projectIdentifier ) && ! is_string ($ projectIdentifier )) {
248
248
throw new InvalidArgumentException (sprintf (
@@ -277,7 +277,7 @@ public function reopen($projectIdentifier): bool
277
277
*
278
278
* @return true if the request was successful
279
279
*/
280
- public function archive ($ projectIdentifier ): bool
280
+ final public function archive ($ projectIdentifier ): bool
281
281
{
282
282
if (! is_int ($ projectIdentifier ) && ! is_string ($ projectIdentifier )) {
283
283
throw new InvalidArgumentException (sprintf (
@@ -312,7 +312,7 @@ public function archive($projectIdentifier): bool
312
312
*
313
313
* @return true if the request was successful
314
314
*/
315
- public function unarchive ($ projectIdentifier ): bool
315
+ final public function unarchive ($ projectIdentifier ): bool
316
316
{
317
317
if (! is_int ($ projectIdentifier ) && ! is_string ($ projectIdentifier )) {
318
318
throw new InvalidArgumentException (sprintf (
0 commit comments