Completed
Pull Request — master (#617)
by mingyoung
05:10
created

Unauthorized::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 5
c 0
b 0
f 0
nc 1
nop 1
dl 0
loc 8
ccs 5
cts 5
cp 1
crap 1
rs 9.4285
1
<?php
2
3
/*
4
 * This file is part of the overtrue/wechat.
5
 *
6
 * (c) overtrue <[email protected]>
7
 *
8
 * This source file is subject to the MIT license that is bundled
9
 * with this source code in the file LICENSE.
10
 */
11
12
/**
13
 * Unauthorized.php.
14
 *
15
 * Part of Overtrue\WeChat.
16
 *
17
 * For the full copyright and license information, please view the LICENSE
18
 * file that was distributed with this source code.
19
 *
20
 * @author    mingyoung <[email protected]>
21
 * @author    lixiao <[email protected]>
22
 * @copyright 2016
23
 *
24
 * @see      https://github.com/overtrue
25
 * @see      http://overtrue.me
26
 */
27
28
namespace EasyWeChat\OpenPlatform\EventHandlers;
29
30
use EasyWeChat\Support\Collection;
31
32
class Unauthorized extends Authorized
33
{
34
    /**
35
     * @inheritdoc
36
     */
37 1
    public function handle(Collection $message)
38
    {
39 1
        $this->authorization->setFromAuthMessage($message);
40 1
        $this->authorization->removeAuthorizerAccessToken();
41 1
        $this->authorization->removeAuthorizerRefreshToken();
42
43 1
        return $message;
44
    }
45
}
46