GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

ScoCreate::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 4
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 8
rs 10
1
<?php
2
3
namespace Soheilrt\AdobeConnectClient\Client\Commands;
4
5
use Soheilrt\AdobeConnectClient\Client\Abstracts\Command;
6
use Soheilrt\AdobeConnectClient\Client\Contracts\ArrayableInterface;
7
use Soheilrt\AdobeConnectClient\Client\Converter\Converter;
8
use Soheilrt\AdobeConnectClient\Client\Entities\SCO;
9
use Soheilrt\AdobeConnectClient\Client\Helpers\SetEntityAttributes as FillObject;
10
use Soheilrt\AdobeConnectClient\Client\Helpers\StatusValidate;
11
12
/**
13
 * Create a SCO.
14
 *
15
 * More info see {@link https://helpx.adobe.com/adobe-connect/webservices/sco-update.html}
16
 */
17
class ScoCreate extends Command
18
{
19
    /**
20
     * @var array
21
     */
22
    protected $parameters;
23
24
    /**
25
     * @var SCO|mixed
26
     */
27
    protected $sco;
28
29
    /**
30
     * @param ArrayableInterface $sco
31
     */
32
    public function __construct(ArrayableInterface $sco)
33
    {
34
        $this->parameters = [
35
            'action' => 'sco-update',
36
        ];
37
38
        $this->parameters += $sco->toArray();
39
        $this->sco = $this->getEntity('sco');
40
    }
41
42
    /**
43
     * {@inheritdoc}
44
     *
45
     * @return SCO
46
     */
47
    protected function process()
48
    {
49
        // Create a SCO only in a folder
50
        if (isset($this->parameters['sco-id'])) {
51
            unset($this->parameters['sco-id']);
52
        }
53
54
        $response = Converter::convert(
55
            $this->client->doGet(
0 ignored issues
show
Bug introduced by
The method doGet() does not exist on Soheilrt\AdobeConnectCli...lient\Abstracts\Command. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

55
            $this->client->/** @scrutinizer ignore-call */ 
56
                           doGet(

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
56
                $this->parameters + ['session' => $this->client->getSession()]
0 ignored issues
show
Bug introduced by
The method getSession() does not exist on Soheilrt\AdobeConnectCli...lient\Abstracts\Command. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

56
                $this->parameters + ['session' => $this->client->/** @scrutinizer ignore-call */ getSession()]

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
57
            )
58
        );
59
60
        StatusValidate::validate($response['status']);
61
62
        $sco = new $this->sco();
63
        FillObject::setAttributes($sco, $response['sco']);
64
65
        return $sco;
66
    }
67
}
68