Passed
Pull Request — develop (#295)
by Peter
04:30
created

MessageBirdMessageResult   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 22
rs 10
c 0
b 0
f 0
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A getRawErrors() 0 3 1
A isSuccess() 0 3 1
A isMessageInvalid() 0 3 1
1
<?php
2
3
/**
4
 * Copyright 2021 SURFnet B.V.
5
 *
6
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * you may not use this file except in compliance with the License.
8
 * You may obtain a copy of the License at
9
 *
10
 *     http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing, software
13
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * See the License for the specific language governing permissions and
16
 * limitations under the License.
17
 */
0 ignored issues
show
Coding Style introduced by
PHP version not specified
Loading history...
Coding Style introduced by
Missing @category tag in file comment
Loading history...
Coding Style introduced by
Missing @package tag in file comment
Loading history...
Coding Style introduced by
Missing @author tag in file comment
Loading history...
Coding Style introduced by
Missing @license tag in file comment
Loading history...
Coding Style introduced by
Missing @link tag in file comment
Loading history...
18
19
namespace Surfnet\StepupGateway\ApiBundle\Sms;
20
21
use Surfnet\MessageBirdApiClient\Messaging\SendMessageResult;
22
23
class MessageBirdMessageResult implements SmsMessageResultInterface
0 ignored issues
show
Coding Style introduced by
Missing doc comment for class MessageBirdMessageResult
Loading history...
24
{
25
    private $message;
0 ignored issues
show
Coding Style introduced by
Private member variable "message" must be prefixed with an underscore
Loading history...
26
27
    public function __construct(SendMessageResult $message)
0 ignored issues
show
Coding Style introduced by
Missing doc comment for function __construct()
Loading history...
28
    {
29
        $this->message = $message;
30
    }
31
32
    public function isSuccess(): bool
0 ignored issues
show
Coding Style introduced by
Missing doc comment for function isSuccess()
Loading history...
33
    {
34
        return $this->message->isSuccess();
35
    }
36
37
    public function isMessageInvalid(): bool
0 ignored issues
show
Coding Style introduced by
Missing doc comment for function isMessageInvalid()
Loading history...
38
    {
39
        return $this->message->isMessageInvalid();
40
    }
41
42
    public function getRawErrors(): array
0 ignored issues
show
Coding Style introduced by
Missing doc comment for function getRawErrors()
Loading history...
43
    {
44
        return $this->message->getRawErrors();
45
    }
46
}
47