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 ( e28ef8...589b37 )
by cao
03:51
created
src/Console.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 use PhpBoot\Console\ConsoleContainer;
12 12
 use PhpBoot\Console\ConsoleContainerBuilder;
13 13
 use PhpBoot\DI\Traits\EnableDIAnnotations;
14
-use Symfony\Component\Console\Command\Command;
15 14
 use Symfony\Component\Console\Input\InputInterface;
16 15
 use Symfony\Component\Console\Output\OutputInterface;
17 16
 
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         return $factory->make(self::class);
38 38
     }
39 39
     /**
40
-     * @param $className
40
+     * @param string $className
41 41
      * @throws \Exception
42 42
      */
43 43
     public function loadCommandsFromClass($className)
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         $container = $this->consoleContainerBuilder->build($className);
56 56
         /**@var ConsoleContainer $container*/
57 57
         foreach ($container->getCommands() as $name => $command) {
58
-            $command->setCode(function (InputInterface $input, OutputInterface $output)use ($container, $command){
58
+            $command->setCode(function(InputInterface $input, OutputInterface $output)use ($container, $command){
59 59
                 return $this->diInvoker->call([$command, 'invoke'], ['container'=>$container, 'input'=>$input, 'output'=>$output]);
60 60
             });
61 61
             $this->add($command);
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     {
72 72
         $dir = @dir($fromPath) or abort("dir $fromPath not exist");
73 73
 
74
-        $getEach = function () use ($dir) {
74
+        $getEach = function() use ($dir) {
75 75
             $name = $dir->read();
76 76
             if (!$name) {
77 77
                 return $name;
@@ -83,11 +83,11 @@  discard block
 block discarded – undo
83 83
             if ($entry == '.' || $entry == '..') {
84 84
                 continue;
85 85
             }
86
-            $path = $fromPath . '/' . str_replace('\\', '/', $entry);
86
+            $path = $fromPath.'/'.str_replace('\\', '/', $entry);
87 87
             if (is_file($path) && substr_compare($entry, '.php', strlen($entry) - 4, 4, true) == 0) {
88
-                $class_name = $namespace . '\\' . substr($entry, 0, strlen($entry) - 4);
88
+                $class_name = $namespace.'\\'.substr($entry, 0, strlen($entry) - 4);
89 89
                 $this->loadCommandsFromClass($class_name);
90
-            } else {
90
+            }else {
91 91
                 //\Log::debug($path.' ignored');
92 92
             }
93 93
         }
Please login to merge, or discard this patch.
src/Console/Annotations/CommandAnnotationHandler.php 2 patches
Unused Use Statements   -7 removed lines patch added patch discarded remove patch
@@ -2,17 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace PhpBoot\Console\Annotations;
4 4
 
5
-use DI\InvokerInterface;
6
-use FastRoute\RouteParser\Std;
7 5
 use PhpBoot\Console\Command;
8 6
 use PhpBoot\Console\ConsoleContainer;
9 7
 use PhpBoot\Entity\ContainerFactory;
10 8
 use PhpBoot\Entity\EntityContainerBuilder;
11
-use PhpBoot\Metas\ReturnMeta;
12
-use PhpBoot\Annotation\AnnotationBlock;
13
-use PhpBoot\Annotation\AnnotationTag;
14
-use PhpBoot\Entity\MixedTypeContainer;
15
-use PhpBoot\Exceptions\AnnotationSyntaxException;
16 9
 use PhpBoot\Metas\ParamMeta;
17 10
 use PhpBoot\Utils\AnnotationParams;
18 11
 
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         $name = $params->getParam(0, $target);
26 26
 
27 27
         //获取方法参数信息
28
-        $rfl =  new \ReflectionClass($container->getClassName());
28
+        $rfl = new \ReflectionClass($container->getClassName());
29 29
         $method = $rfl->getMethod($target);
30 30
         $methodParams = $method->getParameters();
31 31
 
@@ -35,19 +35,19 @@  discard block
 block discarded – undo
35 35
 
36 36
         //设置参数列表
37 37
         $paramsMeta = [];
38
-        foreach ($methodParams as $param){
38
+        foreach ($methodParams as $param) {
39 39
             $paramName = $param->getName();
40 40
             $source = "argv.$paramName";
41 41
             $paramClass = $param->getClass();
42
-            if($paramClass){
42
+            if ($paramClass) {
43 43
                 $paramClass = $paramClass->getName();
44 44
             }
45 45
             $entityContainer = ContainerFactory::create($entityBuilder, $paramClass);
46 46
             $meta = new ParamMeta($paramName,
47 47
                 $source,
48
-                $paramClass?:'mixed',
48
+                $paramClass ?: 'mixed',
49 49
                 $param->isOptional(),
50
-                $param->isOptional()?$param->getDefaultValue():null,
50
+                $param->isOptional() ? $param->getDefaultValue() : null,
51 51
                 $param->isPassedByReference(),
52 52
                 null,
53 53
                 '',
Please login to merge, or discard this patch.
src/Console/Command.php 3 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -64,6 +64,9 @@
 block discarded – undo
64 64
         }
65 65
     }
66 66
 
67
+    /**
68
+     * @param string|null $name
69
+     */
67 70
     public function getParamMeta($name)
68 71
     {
69 72
         foreach ($this->paramMetas as $meta){
Please login to merge, or discard this patch.
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -105,13 +105,13 @@  discard block
 block discarded – undo
105 105
                 }
106 106
                 if($meta->container){
107 107
                     $inputs[$meta->name] = $meta->container->make($source);
108
-                }else{
108
+                } else{
109 109
                     $inputs[$meta->name] = $source;
110 110
                 }
111 111
                 if($meta->validation){
112 112
                     $vld->rule($meta->validation, $meta->name);
113 113
                 }
114
-            }else{
114
+            } else{
115 115
                 $meta->isOptional or \PhpBoot\abort(new \InvalidArgumentException("the parameter \"{$meta->source}\" is missing"));
116 116
                 $inputs[$meta->name] = $meta->default;
117 117
             }
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
         foreach ($this->paramMetas as $meta){
131 131
             if($meta->isPassedByReference){
132 132
                 $params[$pos] = null;
133
-            }else{
133
+            } else{
134 134
                 $params[$pos] = $inputs[$meta->name];
135 135
             }
136 136
             $pos++;
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     public function __construct($actionName, $name)
37 37
     {
38
-        parent::__construct($name?:$actionName);
38
+        parent::__construct($name ?: $actionName);
39 39
         $this->actionName = $actionName;
40 40
     }
41 41
     /**
@@ -48,14 +48,14 @@  discard block
 block discarded – undo
48 48
 
49 49
     public function postCreate(ConsoleContainer $container)
50 50
     {
51
-        if($container->getModuleName()){
51
+        if ($container->getModuleName()) {
52 52
             $this->setName($container->getModuleName().'.'.$this->getName());
53 53
         }
54 54
 
55
-        foreach ($this->paramMetas as $paramMeta){
56
-            $mode = $paramMeta->isOptional?InputArgument::OPTIONAL:InputArgument::REQUIRED;
57
-            if($paramMeta->container instanceof ArrayContainer || $paramMeta->container instanceof EntityContainer){
58
-                $mode = $mode|InputArgument::IS_ARRAY;
55
+        foreach ($this->paramMetas as $paramMeta) {
56
+            $mode = $paramMeta->isOptional ?InputArgument::OPTIONAL : InputArgument::REQUIRED;
57
+            if ($paramMeta->container instanceof ArrayContainer || $paramMeta->container instanceof EntityContainer) {
58
+                $mode = $mode | InputArgument::IS_ARRAY;
59 59
             }
60 60
             $this->addArgument($paramMeta->name,
61 61
                 $mode,
@@ -67,8 +67,8 @@  discard block
 block discarded – undo
67 67
 
68 68
     public function getParamMeta($name)
69 69
     {
70
-        foreach ($this->paramMetas as $meta){
71
-            if($meta->name == $name){
70
+        foreach ($this->paramMetas as $meta) {
71
+            if ($meta->name == $name) {
72 72
                 return $meta;
73 73
             }
74 74
         }
@@ -84,40 +84,40 @@  discard block
 block discarded – undo
84 84
      * @throws \DI\DependencyException
85 85
      * @throws \DI\NotFoundException
86 86
      */
87
-    public function invoke(FactoryInterface $factory,ConsoleContainer $container, InputInterface $input, OutputInterface $output)
87
+    public function invoke(FactoryInterface $factory, ConsoleContainer $container, InputInterface $input, OutputInterface $output)
88 88
     {
89 89
         $params = [];
90 90
         $reference = [];
91
-        $this->bindInput($input, $params,$reference);
91
+        $this->bindInput($input, $params, $reference);
92 92
         $code = call_user_func_array([$container->getInstance($factory), $this->actionName], $params);
93 93
         return $code;
94 94
     }
95 95
 
96
-    public function bindInput(InputInterface $input, array &$params, array &$reference){
96
+    public function bindInput(InputInterface $input, array &$params, array &$reference) {
97 97
         $vld = new Validator();
98 98
         $req = ['argv'=>$input->getArguments()];
99 99
         $requestArray = new ArrayAdaptor($req);
100 100
         $inputs = [];
101
-        foreach ($this->paramMetas as $k=>$meta){
102
-            if($meta->isPassedByReference){
101
+        foreach ($this->paramMetas as $k=>$meta) {
102
+            if ($meta->isPassedByReference) {
103 103
                 // param PassedByReference is used to output
104 104
                 continue;
105 105
             }
106 106
             $source = \JmesPath\search($meta->source, $requestArray);
107
-            if ($source !== null){
107
+            if ($source !== null) {
108 108
                 $source = ArrayAdaptor::strip($source);
109
-                if($source instanceof ParameterBag){
109
+                if ($source instanceof ParameterBag) {
110 110
                     $source = $source->all();
111 111
                 }
112
-                if($meta->container){
112
+                if ($meta->container) {
113 113
                     $inputs[$meta->name] = $meta->container->make($source);
114
-                }else{
114
+                }else {
115 115
                     $inputs[$meta->name] = $source;
116 116
                 }
117
-                if($meta->validation){
117
+                if ($meta->validation) {
118 118
                     $vld->rule($meta->validation, $meta->name);
119 119
                 }
120
-            }else{
120
+            }else {
121 121
                 $meta->isOptional or \PhpBoot\abort(new \InvalidArgumentException("the parameter \"{$meta->source}\" is missing"));
122 122
                 $inputs[$meta->name] = $meta->default;
123 123
             }
@@ -133,10 +133,10 @@  discard block
 block discarded – undo
133 133
         );
134 134
 
135 135
         $pos = 0;
136
-        foreach ($this->paramMetas as $meta){
137
-            if($meta->isPassedByReference){
136
+        foreach ($this->paramMetas as $meta) {
137
+            if ($meta->isPassedByReference) {
138 138
                 $params[$pos] = null;
139
-            }else{
139
+            }else {
140 140
                 $params[$pos] = $inputs[$meta->name];
141 141
             }
142 142
             $pos++;
Please login to merge, or discard this patch.
src/Console/ConsoleContainerBuilder.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 
22 22
 class ConsoleContainerBuilder extends ContainerBuilder
23 23
 {
24
-    static $DEFAULT_ANNOTATIONS=[
24
+    static $DEFAULT_ANNOTATIONS = [
25 25
         [ClassAnnotationHandler::class, 'class'],
26 26
         [CommandNameAnnotationHandler::class, "class.children[?name=='command']"],
27 27
         [CommandAnnotationHandler::class, "methods.*.children[?name=='command'][]"],
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
                                 array $annotations = null
44 44
     )
45 45
     {
46
-        if($annotations){
46
+        if ($annotations) {
47 47
             parent::__construct($annotations, $cache);
48
-        }else{
48
+        }else {
49 49
             parent::__construct(self::$DEFAULT_ANNOTATIONS, $cache);
50 50
         }
51 51
         $this->factory = $factory;
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     {
37 37
         if($annotations){
38 38
             parent::__construct($annotations, $cache);
39
-        }else{
39
+        } else{
40 40
             parent::__construct(self::$DEFAULT_ANNOTATIONS, $cache);
41 41
         }
42 42
         $this->factory = $factory;
Please login to merge, or discard this patch.
src/Console/Annotations/ParamAnnotationHandler.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -22,17 +22,17 @@  discard block
 block discarded – undo
22 22
         $paramType = null;
23 23
         $paramName = null;
24 24
         $paramDoc = '';
25
-        if(substr($text, 0, 1) == '$'){ //带$前缀的是变量
25
+        if (substr($text, 0, 1) == '$') { //带$前缀的是变量
26 26
             $params = new AnnotationParams($text, 2);
27 27
             $paramName = substr($params->getParam(0), 1);
28 28
             $paramDoc = $params->getRawParam(1, '');
29
-        }else{
29
+        }else {
30 30
             $params = new AnnotationParams($text, 3);
31
-            if ($params->count() >=2 && substr($params->getParam(1), 0, 1) == '$'){
31
+            if ($params->count()>=2 && substr($params->getParam(1), 0, 1) == '$') {
32 32
                 $paramType = $params->getParam(0); //TODO 检测类型是否合法
33 33
                 $paramName = substr($params->getParam(1), 1);
34 34
                 $paramDoc = $params->getRawParam(2, '');
35
-            }else{
35
+            }else {
36 36
                 \PhpBoot\abort(new AnnotationSyntaxException("@param $text syntax error"));
37 37
             }
38 38
         }
@@ -45,15 +45,15 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function __invoke(ConsoleContainer $container, $ann, EntityContainerBuilder $entityBuilder)
47 47
     {
48
-        if(!$ann->parent){
48
+        if (!$ann->parent) {
49 49
             //Logger::debug("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()} should be used with parent route");
50 50
             return;
51 51
         }
52 52
         $target = $ann->parent->name;
53 53
         $command = $container->getCommand($target);
54
-        if(!$command){
54
+        if (!$command) {
55 55
             //Logger::debug("The annotation \"@{$ann->name} {$ann->description}\" of {$container->getClassName()}::$target should be used with parent route");
56
-            return ;
56
+            return;
57 57
         }
58 58
         $className = $container->getClassName();
59 59
 
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
         $paramMeta = $command->getParamMeta($paramName);
63 63
         $paramMeta or \PhpBoot\abort(new AnnotationSyntaxException("$className::$target param $paramName not exist "));
64 64
         //TODO 检测声明的类型和注释的类型是否匹配
65
-        if($paramType){
66
-            $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 "));
65
+        if ($paramType) {
66
+            $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 "));
67 67
             $container = ContainerFactory::create($entityBuilder, $paramMeta->type);
68 68
             $paramMeta->container = $container;
69 69
         }
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,13 +25,13 @@
 block discarded – undo
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 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
         }
Please login to merge, or discard this patch.
src/Console/Annotations/ValidateAnnotationHandler.php 2 patches
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(ConsoleContainer $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
         $command = $container->getCommand($target);
27
-        if(!$command){
27
+        if (!$command) {
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 = $command->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.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
             $paramMeta = $command->getParamMeta($paramName);
39 39
             if($params->count()>1){
40 40
                 $paramMeta->validation = [$params[0], $params[1]];
41
-            }else{
41
+            } else{
42 42
                 $paramMeta->validation = $params[0];
43 43
                 if($paramMeta->validation) {
44 44
                     $v = new Validator();
Please login to merge, or discard this patch.
src/Console/ConsoleContainer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
     public function getCommand($target)
60 60
     {
61
-        return isset($this->commands[$target])?$this->commands[$target]:null;
61
+        return isset($this->commands[$target]) ? $this->commands[$target] : null;
62 62
     }
63 63
     /**
64 64
      * @return string
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     }
98 98
     public function postCreate()
99 99
     {
100
-        foreach ($this->commands as $command){
100
+        foreach ($this->commands as $command) {
101 101
             $command->postCreate($this);
102 102
         }
103 103
     }
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
      */
114 114
     public function getInstance(FactoryInterface $factory)
115 115
     {
116
-        if(!$this->instance ){
117
-            $this->instance  = $factory->make($this->getClassName());
116
+        if (!$this->instance) {
117
+            $this->instance = $factory->make($this->getClassName());
118 118
         }
119 119
         return $this->instance;
120 120
     }
Please login to merge, or discard this patch.
src/Lock/LocalAutoLock.php 2 patches
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -8,20 +8,20 @@  discard block
 block discarded – undo
8 8
  */
9 9
 class LocalAutoLock
10 10
 {
11
-    static function lock($key, $seconds, callable $success, callable $error=null){
11
+    static function lock($key, $seconds, callable $success, callable $error = null) {
12 12
         $key = 'lock:'.$key;
13
-        if(function_exists('apc_add')){
13
+        if (function_exists('apc_add')) {
14 14
             $lock = new ApcLock();
15
-        }else{
15
+        }else {
16 16
             $lock = new FileLock();
17 17
         }
18
-        try{
19
-            if(!isset(self::$currentLock[$key])){
18
+        try {
19
+            if (!isset(self::$currentLock[$key])) {
20 20
                 self::$currentLock[$key] = 0;
21 21
             }
22
-            if(self::$currentLock[$key] == 0){  //未加锁
23
-                if(!$lock->lock($key, $seconds)){ //加锁失败
24
-                    if($error){
22
+            if (self::$currentLock[$key] == 0) {  //未加锁
23
+                if (!$lock->lock($key, $seconds)) { //加锁失败
24
+                    if ($error) {
25 25
                         return $error();
26 26
                     }
27 27
                     return;
@@ -29,37 +29,37 @@  discard block
 block discarded – undo
29 29
             }
30 30
             //嵌套加锁
31 31
             self::$currentLock[$key]++;
32
-        }catch (\Exception $e){
33
-            if($error){
32
+        }catch (\Exception $e) {
33
+            if ($error) {
34 34
                 return $error();
35 35
             }
36 36
             return;
37 37
         }
38 38
         $res = null;
39
-        try{
39
+        try {
40 40
             $res = $success();
41
-        }catch (\Exception $e){
41
+        }catch (\Exception $e) {
42 42
             self::$currentLock[$key]--;
43
-            if(self::$currentLock[$key] == 0){
44
-                try{
43
+            if (self::$currentLock[$key] == 0) {
44
+                try {
45 45
                     $lock->unlock($key);
46
-                }catch (\Exception $e){
46
+                }catch (\Exception $e) {
47 47
 
48 48
                 }
49 49
             }
50 50
             throw $e;
51 51
         }
52 52
         self::$currentLock[$key]--;
53
-        if(self::$currentLock[$key] == 0){
54
-            try{
53
+        if (self::$currentLock[$key] == 0) {
54
+            try {
55 55
                 $lock->unlock($key);
56
-            }catch (\Exception $e){
56
+            }catch (\Exception $e) {
57 57
 
58 58
             }
59 59
         }
60 60
         return $res;
61 61
     }
62 62
 
63
-    private $cache=[];
64
-    static private $currentLock=[];
63
+    private $cache = [];
64
+    static private $currentLock = [];
65 65
 }
66 66
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
         $key = 'lock:'.$key;
13 13
         if(function_exists('apc_add')){
14 14
             $lock = new ApcLock();
15
-        }else{
15
+        } else{
16 16
             $lock = new FileLock();
17 17
         }
18 18
         try{
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
             }
30 30
             //嵌套加锁
31 31
             self::$currentLock[$key]++;
32
-        }catch (\Exception $e){
32
+        } catch (\Exception $e){
33 33
             if($error){
34 34
                 return $error();
35 35
             }
@@ -38,12 +38,12 @@  discard block
 block discarded – undo
38 38
         $res = null;
39 39
         try{
40 40
             $res = $success();
41
-        }catch (\Exception $e){
41
+        } catch (\Exception $e){
42 42
             self::$currentLock[$key]--;
43 43
             if(self::$currentLock[$key] == 0){
44 44
                 try{
45 45
                     $lock->unlock($key);
46
-                }catch (\Exception $e){
46
+                } catch (\Exception $e){
47 47
 
48 48
                 }
49 49
             }
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         if(self::$currentLock[$key] == 0){
54 54
             try{
55 55
                 $lock->unlock($key);
56
-            }catch (\Exception $e){
56
+            } catch (\Exception $e){
57 57
 
58 58
             }
59 59
         }
Please login to merge, or discard this patch.
src/Utils/SafeFileWriter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,15 +16,15 @@
 block discarded – undo
16 16
      * @param boolean $overwrite 是否覆盖已有文件
17 17
      * @return boolean
18 18
      */
19
-    static public function write($path, $data, $overwrite = true){
19
+    static public function write($path, $data, $overwrite = true) {
20 20
         $path = str_replace('\\', '/', $path);
21 21
         $fileDir = dirname($path);
22 22
         $tmpFile = tempnam($fileDir, 'safe_writer_');
23 23
         false !== @file_put_contents($tmpFile, $data) or \PhpBoot\abort("write to file: $tmpFile failed");
24
-        if($overwrite){
24
+        if ($overwrite) {
25 25
             @unlink($path); //删除原始文件
26 26
         }
27
-        if(!rename($tmpFile, $path)){
27
+        if (!rename($tmpFile, $path)) {
28 28
             @unlink($tmpFile); //删除原始文件
29 29
             \PhpBoot\abort("write to file: $tmpFile failed");
30 30
             return false;
Please login to merge, or discard this patch.