Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
50.00% covered (danger)
50.00%
4 / 8
75.00% covered (warning)
75.00%
3 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
WebhookAuth
50.00% covered (danger)
50.00%
4 / 8
75.00% covered (warning)
75.00%
3 / 4
6.00
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 getAuthClass
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getCredentials
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 toArray
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2019 (original work) Open Assessment Technologies SA;
19 */
20
21namespace oat\tao\model\webhooks\configEntity;
22
23class WebhookAuth implements WebhookAuthInterface
24{
25    public const AUTH_CLASS = 'authClass';
26    public const CREDENTIALS = 'credentials';
27
28    /**
29     * @var string
30     * @see \oat\tao\model\auth\AbstractAuthType
31     */
32    private $authClass;
33
34    /**
35     * @var array
36     */
37    private $credentials;
38
39    /**
40     * @param string $authClass
41     * @param array $properties
42     */
43    public function __construct($authClass, array $properties)
44    {
45        $this->authClass = $authClass;
46        $this->credentials = $properties;
47    }
48
49    /**
50     * @return string
51     */
52    public function getAuthClass()
53    {
54        return $this->authClass;
55    }
56
57    /**
58     * @return array
59     */
60    public function getCredentials()
61    {
62        return $this->credentials;
63    }
64
65    /**
66     * @return array
67     */
68    public function toArray()
69    {
70        return [
71            self::AUTH_CLASS => $this->getAuthClass(),
72            self::CREDENTIALS => $this->getCredentials()
73        ];
74    }
75}