• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

littleredbutton / bigbluebutton-api-php / 7956483054

19 Feb 2024 08:16AM UTC coverage: 94.548% (-0.3%) from 94.875%
7956483054

Pull #172

github

SamuelWei
Remove deprecations
Pull Request #172: Remove deprecations

1 of 1 new or added line in 1 file covered. (100.0%)

6 existing lines in 3 files now uncovered.

711 of 752 relevant lines covered (94.55%)

36.66 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/src/Responses/DeleteRecordingsResponse.php
1
<?php
2
/**
3
 * BigBlueButton open source conferencing system - https://www.bigbluebutton.org/.
4
 *
5
 * Copyright (c) 2016-2018 BigBlueButton Inc. and by respective authors (see below).
6
 *
7
 * This program is free software; you can redistribute it and/or modify it under the
8
 * terms of the GNU Lesser General Public License as published by the Free Software
9
 * Foundation; either version 3.0 of the License, or (at your option) any later
10
 * version.
11
 *
12
 * BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
13
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14
 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU Lesser General Public License along
17
 * with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
18
 */
19

20
namespace BigBlueButton\Responses;
21

22
/**
23
 * Class DeleteRecordingsResponse.
24
 */
25
class DeleteRecordingsResponse extends BaseResponse
26
{
27
    public const KEY_INVALID_ID = 'InvalidRecordingId';
28

29
    public function isDeleted(): bool
30
    {
31
        return $this->rawXml->deleted->__toString() == 'true';
2✔
32
    }
33

34
    public function isInvalidId(): bool
35
    {
UNCOV
36
        return $this->getMessageKey() === self::KEY_INVALID_ID;
×
37
    }
38
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc