You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CleverAgeOAuthApiBundle.php
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
<?php
2
2
/*
3
-
* This file is part of the CleverAge/OAuthApiBundle package. * Copyright (C) 2017-2021 Clever-Age * For the full copyright and license information, please view the LICENSE
3
+
* This file is part of the CleverAge/OAuthApiBundle package.
4
+
* Copyright (C) 2017-2023 Clever-Age
5
+
* For the full copyright and license information, please view the LICENSE
4
6
* file that was distributed with this source code.
Copy file name to clipboardExpand all lines: Client/ApiClient.php
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
<?php
2
2
/*
3
-
* This file is part of the CleverAge/OAuthApiBundle package. * Copyright (C) 2017-2021 Clever-Age * For the full copyright and license information, please view the LICENSE
3
+
* This file is part of the CleverAge/OAuthApiBundle package.
4
+
* Copyright (C) 2017-2023 Clever-Age
5
+
* For the full copyright and license information, please view the LICENSE
4
6
* file that was distributed with this source code.
Copy file name to clipboardExpand all lines: Client/ApiClientInterface.php
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
<?php
2
2
/*
3
-
* This file is part of the CleverAge/OAuthApiBundle package. * Copyright (C) 2017-2021 Clever-Age * For the full copyright and license information, please view the LICENSE
3
+
* This file is part of the CleverAge/OAuthApiBundle package.
4
+
* Copyright (C) 2017-2023 Clever-Age
5
+
* For the full copyright and license information, please view the LICENSE
4
6
* file that was distributed with this source code.
Copy file name to clipboardExpand all lines: Client/CachedApiClient.php
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
<?php
2
2
/*
3
-
* This file is part of the CleverAge/OAuthApiBundle package. * Copyright (C) 2017-2021 Clever-Age * For the full copyright and license information, please view the LICENSE
3
+
* This file is part of the CleverAge/OAuthApiBundle package.
4
+
* Copyright (C) 2017-2023 Clever-Age
5
+
* For the full copyright and license information, please view the LICENSE
4
6
* file that was distributed with this source code.
Copy file name to clipboardExpand all lines: Client/CachedApiClientInterface.php
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,16 @@
1
1
<?php
2
2
/*
3
-
* This file is part of the CleverAge/OAuthApiBundle package. * Copyright (C) 2017-2021 Clever-Age * For the full copyright and license information, please view the LICENSE
3
+
* This file is part of the CleverAge/OAuthApiBundle package.
4
+
* Copyright (C) 2017-2023 Clever-Age
5
+
* For the full copyright and license information, please view the LICENSE
4
6
* file that was distributed with this source code.
5
7
*/
6
8
declare(strict_types=1);
7
9
8
10
namespaceCleverAge\OAuthApiBundle\Client;
9
11
10
12
/**
11
-
* Additional method to manage cache for API requests
13
+
* Additional method to manage cache for API requests.
Copy file name to clipboardExpand all lines: Client/OAuthRequestFactory.php
+14-16Lines changed: 14 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,24 @@
1
1
<?php
2
2
/*
3
-
* This file is part of the CleverAge/OAuthApiBundle package. * Copyright (C) 2017-2021 Clever-Age * For the full copyright and license information, please view the LICENSE
3
+
* This file is part of the CleverAge/OAuthApiBundle package.
4
+
* Copyright (C) 2017-2023 Clever-Age
5
+
* For the full copyright and license information, please view the LICENSE
4
6
* file that was distributed with this source code.
Copy file name to clipboardExpand all lines: Client/OAuthTokenAwareRequestFactoryInterface.php
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
<?php
2
2
/*
3
-
* This file is part of the CleverAge/OAuthApiBundle package. * Copyright (C) 2017-2021 Clever-Age * For the full copyright and license information, please view the LICENSE
3
+
* This file is part of the CleverAge/OAuthApiBundle package.
4
+
* Copyright (C) 2017-2023 Clever-Age
5
+
* For the full copyright and license information, please view the LICENSE
4
6
* file that was distributed with this source code.
5
7
*/
6
8
declare(strict_types=1);
@@ -11,7 +13,7 @@
11
13
usePsr\Http\Message\RequestFactoryInterface;
12
14
13
15
/**
14
-
* Defines an HTTP client that can provide an OAuth Token
16
+
* Defines an HTTP client that can provide an OAuth Token.
Copy file name to clipboardExpand all lines: Exception/ApiDeserializationException.php
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,16 @@
1
1
<?php
2
2
/*
3
-
* This file is part of the CleverAge/OAuthApiBundle package. * Copyright (C) 2017-2021 Clever-Age * For the full copyright and license information, please view the LICENSE
3
+
* This file is part of the CleverAge/OAuthApiBundle package.
4
+
* Copyright (C) 2017-2023 Clever-Age
5
+
* For the full copyright and license information, please view the LICENSE
4
6
* file that was distributed with this source code.
5
7
*/
6
8
declare(strict_types=1);
7
9
8
10
namespaceCleverAge\OAuthApiBundle\Exception;
9
11
10
12
/**
11
-
* Thrown when not able to deserialize a response from the API
13
+
* Thrown when not able to deserialize a response from the API.
12
14
*/
13
15
class ApiDeserializationException extends \RuntimeException
Copy file name to clipboardExpand all lines: Exception/ApiRequestException.php
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,16 @@
1
1
<?php
2
2
/*
3
-
* This file is part of the CleverAge/OAuthApiBundle package. * Copyright (C) 2017-2021 Clever-Age * For the full copyright and license information, please view the LICENSE
3
+
* This file is part of the CleverAge/OAuthApiBundle package.
4
+
* Copyright (C) 2017-2023 Clever-Age
5
+
* For the full copyright and license information, please view the LICENSE
4
6
* file that was distributed with this source code.
5
7
*/
6
8
declare(strict_types=1);
7
9
8
10
namespaceCleverAge\OAuthApiBundle\Exception;
9
11
10
12
/**
11
-
* Thrown when unable to request a remote API
13
+
* Thrown when unable to request a remote API.
12
14
*/
13
15
class ApiRequestException extends \RuntimeException
Copy file name to clipboardExpand all lines: Exception/ClientRequestFailedException.php
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
<?php
2
2
/*
3
-
* This file is part of the CleverAge/OAuthApiBundle package. * Copyright (C) 2017-2021 Clever-Age * For the full copyright and license information, please view the LICENSE
3
+
* This file is part of the CleverAge/OAuthApiBundle package.
4
+
* Copyright (C) 2017-2023 Clever-Age
5
+
* For the full copyright and license information, please view the LICENSE
4
6
* file that was distributed with this source code.
0 commit comments