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.

ControllerMethodsTrait   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 47
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 26.67%

Importance

Changes 0
Metric Value
dl 0
loc 47
ccs 4
cts 15
cp 0.2667
rs 10
c 0
b 0
f 0
wmc 4
lcom 0
cbo 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __call() 0 12 2
A __get() 0 11 2
1
<?php
2
/**
3
 * Kotori.php
4
 *
5
 * A Tiny Model-View-Controller PHP Framework
6
 *
7
 * This content is released under the Apache 2 License
8
 *
9
 * Copyright (c) 2015-2017 Kotori Technology. All rights reserved.
10
 *
11
 * Licensed under the Apache License, Version 2.0 (the "License");
12
 * you may not use this file except in compliance with the License.
13
 * You may obtain a copy of the License at
14
 *
15
 *     http://www.apache.org/licenses/LICENSE-2.0
16
 *
17
 * Unless required by applicable law or agreed to in writing, software
18
 * distributed under the License is distributed on an "AS IS" BASIS,
19
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20
 * See the License for the specific language governing permissions and
21
 * limitations under the License.
22
 */
23
24
/**
25
 * ControllerMethods Trait
26
 *
27
 * @package     Kotori
28
 * @subpackage  Traits
29
 * @author      Kokororin
30
 * @link        https://kotori.love
31
 */
32
namespace Kotori\Traits;
33
34
use Kotori\Core\Container;
35
use Kotori\Exception\NotFoundException;
36
37
trait ControllerMethodsTrait
38
{
39
    /**
40
     * __get magic
41
     *
42
     * Allows models and views to access loaded classes using the same
43
     * syntax as controllers.
44
     *
45
     * @param string $key
46
     *
47
     * @throws \Kotori\Exception\NotFoundException
48
     */
49 2
    public function __get($key)
50
    {
51 2
        $controller = Container::get('controller');
52 2
        if (property_exists($controller, $key)) {
53 2
            return $controller->$key;
54
        }
55
56
        $backTrace = debug_backtrace();
57
        $className = get_class($backTrace[0]['object']);
58
        throw new NotFoundException($className . '::$' . $key . ' is not defined');
59
    }
60
61
    /**
62
     * __call magic
63
     *
64
     * Allows models and views to access controller methods
65
     *
66
     * @param  string $name
67
     * @param  array  $arguments
68
     *
69
     * @throws \Kotori\Exception\NotFoundException
70
     */
71
    public function __call($name, $arguments)
72
    {
73
        $controller = Container::get('controller');
74
        $callback = [$controller, $name];
75
        if (!is_callable($callback)) {
76
            $backTrace = debug_backtrace();
77
            $className = get_class($backTrace[0]['object']);
78
            throw new NotFoundException($className . '::' . $name . '() is not callable');
79
        }
80
81
        return call_user_func_array($callback, $arguments);
82
    }
83
}
84