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.
Completed
Push — master ( 725689...432516 )
by cao
03:37
created
src/Controller/RequestHandler.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     /**
16 16
      * @param ParamMeta[] $paramMates
17 17
      */
18
-    public function __construct(array $paramMates=[]){
18
+    public function __construct(array $paramMates = []) {
19 19
         $this->paramMetas = $paramMates;
20 20
     }
21 21
 
@@ -26,32 +26,32 @@  discard block
 block discarded – undo
26 26
      * @param array $reference
27 27
      * @return void
28 28
      */
29
-    public function handle(Application $app, Request $request, array &$params, array &$reference){
29
+    public function handle(Application $app, Request $request, array &$params, array &$reference) {
30 30
 
31 31
         $vld = new Validator();
32 32
         $req = ['request'=>$request];
33 33
         $requestArray = new ArrayAdaptor($req);
34 34
         $inputs = [];
35
-        foreach ($this->paramMetas as $k=>$meta){
36
-            if($meta->isPassedByReference){
35
+        foreach ($this->paramMetas as $k=>$meta) {
36
+            if ($meta->isPassedByReference) {
37 37
                 // param PassedByReference is used to output
38 38
                 continue;
39 39
             }
40 40
             $source = \JmesPath\search($meta->source, $requestArray);
41
-            if ($source !== null){
41
+            if ($source !== null) {
42 42
                 $source = ArrayAdaptor::strip($source);
43
-                if($source instanceof ParameterBag){
43
+                if ($source instanceof ParameterBag) {
44 44
                     $source = $source->all();
45 45
                 }
46
-                if($meta->container){
46
+                if ($meta->container) {
47 47
                     $inputs[$meta->name] = $meta->container->make($source);
48
-                }else{
48
+                }else {
49 49
                     $inputs[$meta->name] = $source;
50 50
                 }
51
-                if($meta->validation){
51
+                if ($meta->validation) {
52 52
                     $vld->rule($meta->validation, $meta->name);
53 53
                 }
54
-            }else{
54
+            }else {
55 55
                 $meta->isOptional or \PhpBoot\abort(new BadRequestHttpException("param $source is required"));
56 56
                 $inputs[$meta->name] = $meta->default;
57 57
             }
@@ -66,10 +66,10 @@  discard block
 block discarded – undo
66 66
         );
67 67
 
68 68
         $pos = 0;
69
-        foreach ($this->paramMetas as $meta){
70
-            if($meta->isPassedByReference){
69
+        foreach ($this->paramMetas as $meta) {
70
+            if ($meta->isPassedByReference) {
71 71
                 $params[$pos] = &$reference[$meta->name];
72
-            }else{
72
+            }else {
73 73
                 $params[$pos] = $inputs[$meta->name];
74 74
             }
75 75
             $pos++;
@@ -77,15 +77,15 @@  discard block
 block discarded – undo
77 77
         }
78 78
     }
79 79
 
80
-    public function getParamNames(){
81
-        return array_map(function($meta){return $meta->name;}, $this->paramMetas);
80
+    public function getParamNames() {
81
+        return array_map(function($meta) {return $meta->name; }, $this->paramMetas);
82 82
     }
83 83
 
84 84
     /**
85 85
      * 获取参数列表
86 86
      * @return ParamMeta[]
87 87
      */
88
-    public function getParamMetas(){
88
+    public function getParamMetas() {
89 89
         return $this->paramMetas;
90 90
     }
91 91
 
@@ -94,9 +94,9 @@  discard block
 block discarded – undo
94 94
      * @param $name
95 95
      * @return ParamMeta|null
96 96
      */
97
-    public function getParamMeta($name){
98
-        foreach ($this->paramMetas as $meta){
99
-            if($meta->name == $name){
97
+    public function getParamMeta($name) {
98
+        foreach ($this->paramMetas as $meta) {
99
+            if ($meta->name == $name) {
100 100
                 return $meta;
101 101
             }
102 102
         }
Please login to merge, or discard this patch.
src/Controller/Annotations/ParamAnnotationHandler.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -21,17 +21,17 @@  discard block
 block discarded – undo
21 21
         $paramType = null;
22 22
         $paramName = null;
23 23
         $paramDoc = '';
24
-        if(substr($text, 0, 1) == '$'){ //带$前缀的是变量
24
+        if (substr($text, 0, 1) == '$') { //带$前缀的是变量
25 25
             $params = new AnnotationParams($text, 2);
26 26
             $paramName = substr($params->getParam(0), 1);
27 27
             $paramDoc = $params->getRawParam(1, '');
28
-        }else{
28
+        }else {
29 29
             $params = new AnnotationParams($text, 3);
30
-            if ($params->count() >=2 && substr($params->getParam(1), 0, 1) == '$'){
30
+            if ($params->count()>=2 && substr($params->getParam(1), 0, 1) == '$') {
31 31
                 $paramType = $params->getParam(0); //TODO 检测类型是否合法
32 32
                 $paramName = substr($params->getParam(1), 1);
33 33
                 $paramDoc = $params->getRawParam(2, '');
34
-            }else{
34
+            }else {
35 35
                 \PhpBoot\abort(new AnnotationSyntaxException("@param $text syntax error"));
36 36
             }
37 37
         }
@@ -44,15 +44,15 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public function __invoke(ControllerContainer $container, $ann, EntityContainerBuilder $entityBuilder)
46 46
     {
47
-        if(!$ann->parent){
47
+        if (!$ann->parent) {
48 48
             //Logger::debug("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()} should be used with parent route");
49 49
             return;
50 50
         }
51 51
         $target = $ann->parent->name;
52 52
         $route = $container->getRoute($target);
53
-        if(!$route){
53
+        if (!$route) {
54 54
             //Logger::debug("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()}::$target should be used with parent route");
55
-            return ;
55
+            return;
56 56
         }
57 57
         $className = $container->getClassName();
58 58
 
@@ -61,18 +61,18 @@  discard block
 block discarded – undo
61 61
         $paramMeta = $route->getRequestHandler()->getParamMeta($paramName);
62 62
         $paramMeta or \PhpBoot\abort(new AnnotationSyntaxException("$className::$target param $paramName not exist "));
63 63
         //TODO 检测声明的类型和注释的类型是否匹配
64
-        if($paramType){
65
-            $paramMeta->type = TypeHint::normalize($paramType, $className);//or \PhpBoot\abort(new AnnotationSyntaxException("{$container->getClassName()}::{$ann->parent->name} @{$ann->name} syntax error, param $paramName unknown type:$paramType "));
64
+        if ($paramType) {
65
+            $paramMeta->type = TypeHint::normalize($paramType, $className); //or \PhpBoot\abort(new AnnotationSyntaxException("{$container->getClassName()}::{$ann->parent->name} @{$ann->name} syntax error, param $paramName unknown type:$paramType "));
66 66
             $container = ContainerFactory::create($entityBuilder, $paramMeta->type);
67 67
             $paramMeta->container = $container;
68 68
         }
69 69
         $paramMeta->description = $paramDoc;
70 70
 
71 71
         $responseHandler = $route->getResponseHandler();
72
-        if($paramMeta->isPassedByReference && $responseHandler){
72
+        if ($paramMeta->isPassedByReference && $responseHandler) {
73 73
             $mappings = $responseHandler->getMappings();
74
-            foreach ($mappings as $k => $v){
75
-                if($v->source == 'params.'.$paramMeta->name){
74
+            foreach ($mappings as $k => $v) {
75
+                if ($v->source == 'params.'.$paramMeta->name) {
76 76
                     $v->description = $paramMeta->description;
77 77
                     $v->type = $paramMeta->type;
78 78
                     $v->container = $paramMeta->container;
Please login to merge, or discard this patch.
src/Controller/Annotations/ThrowsAnnotationHandler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,15 +19,15 @@
 block discarded – undo
19 19
      */
20 20
     public function __invoke(ControllerContainer $container, $ann)
21 21
     {
22
-        if(!$ann->parent){
22
+        if (!$ann->parent) {
23 23
             //Logger::debug("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()} should be used with parent route");
24 24
             return;
25 25
         }
26 26
         $target = $ann->parent->name;
27 27
         $route = $container->getRoute($target);
28
-        if(!$route){
28
+        if (!$route) {
29 29
             //Logger::debug("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()}::$target should be used with parent route");
30
-            return ;
30
+            return;
31 31
         }
32 32
         $params = new AnnotationParams($ann->description, 2);
33 33
         count($params)>0 or \PhpBoot\abort(new AnnotationSyntaxException("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()}::$target require at least one param, {$params->count()} given"));
Please login to merge, or discard this patch.
src/Controller/Annotations/ValidateAnnotationHandler.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -18,29 +18,29 @@
 block discarded – undo
18 18
      */
19 19
     public function __invoke(ControllerContainer $container, $ann)
20 20
     {
21
-        if(!$ann->parent || !$ann->parent->parent){
21
+        if (!$ann->parent || !$ann->parent->parent) {
22 22
             Logger::debug("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()} should be used with parent parent");
23 23
             return;
24 24
         }
25 25
         $target = $ann->parent->parent->name;
26 26
         $route = $container->getRoute($target);
27
-        if(!$route){
27
+        if (!$route) {
28 28
             Logger::debug("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()}::$target should be used with parent parent");
29
-            return ;
29
+            return;
30 30
         }
31 31
         $params = new AnnotationParams($ann->description, 2);
32 32
 
33 33
         count($params)>0 or \PhpBoot\abort(new AnnotationSyntaxException("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()}::$target require 1 param, {$params->count()} given"));
34 34
 
35
-        if($ann->parent->name == 'param'){
35
+        if ($ann->parent->name == 'param') {
36 36
             list($paramType, $paramName, $paramDoc) = ParamAnnotationHandler::getParamInfo($ann->parent->description);
37 37
 
38 38
             $paramMeta = $route->getRequestHandler()->getParamMeta($paramName);
39
-            if($params->count()>1){
39
+            if ($params->count()>1) {
40 40
                 $paramMeta->validation = [$params[0], $params[1]];
41
-            }else{
41
+            }else {
42 42
                 $paramMeta->validation = $params[0];
43
-                if($paramMeta->validation) {
43
+                if ($paramMeta->validation) {
44 44
                     $v = new Validator();
45 45
                     $v->rule($paramMeta->validation, $paramMeta->name);
46 46
                     if ($v->hasRule('optional', $paramMeta->name)) {
Please login to merge, or discard this patch.
src/Controller/Annotations/HookAnnotationHandler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,15 +18,15 @@
 block discarded – undo
18 18
      */
19 19
     public function __invoke(ControllerContainer $container, $ann)
20 20
     {
21
-        if(!$ann->parent){
21
+        if (!$ann->parent) {
22 22
             Logger::debug("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()} should be used with parent route");
23 23
             return;
24 24
         }
25 25
         $target = $ann->parent->name;
26 26
         $route = $container->getRoute($target);
27
-        if(!$route){
27
+        if (!$route) {
28 28
             Logger::debug("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()}::$target should be used with parent route");
29
-            return ;
29
+            return;
30 30
         }
31 31
         $params = new AnnotationParams($ann->description, 2);
32 32
         count($params)>0 or \PhpBoot\abort("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()}::$target require at least one param, 0 given");
Please login to merge, or discard this patch.
src/Controller/ControllerContainer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function getRoute($actionName)
50 50
     {
51
-        if (array_key_exists($actionName, $this->routes)){
51
+        if (array_key_exists($actionName, $this->routes)) {
52 52
             return $this->routes[$actionName];
53 53
         }
54 54
         return false;
@@ -170,16 +170,16 @@  discard block
 block discarded – undo
170 170
     /**
171 171
      * @var Route[]
172 172
      */
173
-    private $routes=[];
173
+    private $routes = [];
174 174
 
175 175
     /**
176 176
      * @var string
177 177
      */
178
-    private $description='';
178
+    private $description = '';
179 179
     /**
180 180
      * @var string
181 181
      */
182
-    private $summary='';
182
+    private $summary = '';
183 183
 
184 184
     /**
185 185
      * @var string
Please login to merge, or discard this patch.
src/Controller/Route.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -8,12 +8,12 @@  discard block
 block discarded – undo
8 8
 class Route
9 9
 {
10 10
     public function __construct(
11
-        $method='',
12
-        $uri='',
13
-        RequestHandler $requestHandler=null,
14
-        ResponseHandler $responseHandler=null,
15
-        ExceptionHandler $exceptionHandler=null,
16
-        $hooks=[],
11
+        $method = '',
12
+        $uri = '',
13
+        RequestHandler $requestHandler = null,
14
+        ResponseHandler $responseHandler = null,
15
+        ExceptionHandler $exceptionHandler = null,
16
+        $hooks = [],
17 17
         $summary = '',
18 18
         $description = '')
19 19
     {
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
                     $res = call_user_func_array($function, $params);
51 51
                     return $this->responseHandler->handle($app, $res, $reference);
52 52
                 };
53
-                foreach (array_reverse($this->hooks) as $hookName){
53
+                foreach (array_reverse($this->hooks) as $hookName) {
54 54
                     $next = function($request)use($app, $hookName, $next){
55 55
                         $hook = $app->get($hookName);
56 56
                         /**@var $hook HookInterface*/
@@ -262,17 +262,17 @@  discard block
 block discarded – undo
262 262
     /**
263 263
      * @var string
264 264
      */
265
-    private $description='';
265
+    private $description = '';
266 266
 
267 267
     /**
268 268
      * hook class names
269 269
      * @var string[]
270 270
      */
271
-    private $hooks=[];
271
+    private $hooks = [];
272 272
 
273 273
     /**
274 274
      * @var string[]
275 275
      */
276
-    private $pathParams =[];
276
+    private $pathParams = [];
277 277
 
278 278
 }
279 279
\ No newline at end of file
Please login to merge, or discard this patch.
src/Cache/CheckableCache.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  */
10 10
 class CheckableCache
11 11
 {
12
-    function __construct(Cache $impl){
12
+    function __construct(Cache $impl) {
13 13
         $this->impl = $impl;
14 14
     }
15 15
    
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      * @param bool $deleteExpiredData
44 44
      * @return mixed
45 45
      */
46
-    public function get($name, $default = null, &$expiredData=null, $deleteExpiredData=true)
46
+    public function get($name, $default = null, &$expiredData = null, $deleteExpiredData = true)
47 47
     {
48 48
         $expiredData = null;
49 49
         $res = $this->impl->fetch($name);
@@ -52,18 +52,18 @@  discard block
 block discarded – undo
52 52
             // 如果指定了checker, ttl代表每次检查的间隔时间, 0表示每次get都需要经过checker检查
53 53
             // 如果没有指定checker, ttl表示缓存过期时间, 为0表示永不过期
54 54
             if ($checker !== null) {
55
-                if ($ttl == 0 || ($createdTime + $ttl < time())) {
55
+                if ($ttl == 0 || ($createdTime + $ttl<time())) {
56 56
                     $valid = $checker($data, $createdTime);
57
-                    if(!$valid){
57
+                    if (!$valid) {
58 58
                         $expiredData = $data;
59
-                        if($deleteExpiredData){
59
+                        if ($deleteExpiredData) {
60 60
                             $this->impl->delete($name);
61 61
                         }
62 62
                         return $default;
63 63
                     }
64 64
                     
65 65
                 }
66
-            }else if ($ttl != 0 && ($createdTime + $ttl < time())) {
66
+            }else if ($ttl != 0 && ($createdTime + $ttl<time())) {
67 67
                 $this->impl->delete($name);
68 68
                 return $default;
69 69
             }
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      * 删除
76 76
      * @param string $name
77 77
      */
78
-    public function del($name){
78
+    public function del($name) {
79 79
         return  $this->impl->delete($name);
80 80
     }
81 81
     public function getImpl()
Please login to merge, or discard this patch.
src/Cache/ClassModifiedChecker.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@  discard block
 block discarded – undo
4 4
 
5 5
 class ClassModifiedChecker extends FileModifiedChecker
6 6
 {
7
-    function __construct($className){
7
+    function __construct($className) {
8 8
         $class = new \ReflectionClass($className);
9 9
         $files = [];
10 10
 
11
-        if($class->getFileName()){
11
+        if ($class->getFileName()) {
12 12
             $files[] = $class->getFileName();
13 13
             self::getParentFileName($class, $files);
14 14
         }
@@ -18,15 +18,15 @@  discard block
 block discarded – undo
18 18
     static public function getParentFileName(\ReflectionClass $class, array &$files)
19 19
     {
20 20
         $parent = $class->getParentClass();
21
-        if(!$parent){
21
+        if (!$parent) {
22 22
             return;
23 23
         }
24
-        if($parent->getFileName()){
24
+        if ($parent->getFileName()) {
25 25
             $files[] = $parent->getParentClass();
26 26
             self::getParentFileName($parent, $files);
27 27
         }
28
-        foreach ($class->getInterfaces() as $interface){
29
-            if($interface->getFileName()){
28
+        foreach ($class->getInterfaces() as $interface) {
29
+            if ($interface->getFileName()) {
30 30
                 $files[] = $interface->getFileName();
31 31
                 self::getParentFileName($interface, $files);
32 32
             }
Please login to merge, or discard this patch.