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

littleredbutton / bigbluebutton-api-php / 8047623130

26 Feb 2024 10:49AM UTC coverage: 94.521% (-0.4%) from 94.875%
8047623130

Pull #181

github

web-flow
Merge d9c7bcc2f into bcd5208d9
Pull Request #181: Recording response errors

0 of 3 new or added lines in 3 files covered. (0.0%)

5 existing lines in 2 files now uncovered.

759 of 803 relevant lines covered (94.52%)

34.86 hits per line

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

50.0
/src/Responses/UpdateRecordingsResponse.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 UpdateRecordingsResponse.
24
 */
25
class UpdateRecordingsResponse extends BaseResponse
26
{
27
    public const KEY_NOT_FOUND = 'notFound';
28

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

34
    public function isNotFound(): bool
35
    {
NEW
36
        return $this->getMessageKey() === self::KEY_NOT_FOUND;
×
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