Completed
Push — master ( 1b85db...753906 )
by Freek
02:16
created

GoogleCalendarFactory::createForCalendarId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 14
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 14
rs 9.4285
c 1
b 0
f 0
cc 1
eloc 7
nc 1
nop 1
1
<?php
2
3
namespace Spatie\GoogleCalendar;
4
5
use Google_Client;
6
use Google_Service_Calendar;
7
8
class GoogleCalendarFactory
9
{
10
    public static function createForCalendarId($calendarId) : GoogleCalendar
11
    {
12
        $config = config('laravel-google-calendar');
13
14
        $client = new Google_Client();
15
16
        $credentials = $client->loadServiceAccountJson($config['client_secret_json'], 'https://www.googleapis.com/auth/calendar');
0 ignored issues
show
Documentation introduced by
'https://www.googleapis.com/auth/calendar' is of type string, but the function expects a array.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
17
18
        $client->setAssertionCredentials($credentials);
19
20
        $service = new Google_Service_Calendar($client);
21
22
        return new GoogleCalendar($service, $calendarId);
23
    }
24
}
25