Completed
Push — master ( d4d654...40e20e )
by Vladimir
04:35
created
src/Check/Manager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         foreach ($checkServiceMap as $checkId => $check) {
49 49
 
50 50
             $checkServiceId = $check['serviceId'];
51
-            $checkProxy = new Proxy(function () use ($checkServiceId, $checkId) {
51
+            $checkProxy = new Proxy(function() use ($checkServiceId, $checkId) {
52 52
                 $this->checks[$checkId] = $this->container->get($checkServiceId);
53 53
 
54 54
                 return $this->checks[$checkId];
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
             $groups = is_string($groups) ? [$groups] : $groups;
97 97
 
98
-            return array_filter($this->groups, function ($t) use ($groups) {
98
+            return array_filter($this->groups, function($t) use ($groups) {
99 99
                 return in_array($t->getName(), $groups);
100 100
             });
101 101
         }
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 
125 125
             $tags = is_string($tags) ? [$tags] : $tags;
126 126
 
127
-            return array_filter($this->tags, function ($t) use ($tags) {
127
+            return array_filter($this->tags, function($t) use ($tags) {
128 128
                 return in_array($t->getName(), $tags);
129 129
             });
130 130
         }
Please login to merge, or discard this patch.
src/Check/CheckTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -85,19 +85,19 @@
 block discarded – undo
85 85
      */
86 86
     public function setAdditionParams(array $data)
87 87
     {
88
-        if(isset($data['id'])) {
88
+        if (isset($data['id'])) {
89 89
             $this->setId($data['id']);
90 90
         }
91 91
 
92
-        if(isset($data['group'])) {
92
+        if (isset($data['group'])) {
93 93
             $this->setGroup($data['group']);
94 94
         }
95 95
 
96
-        if(isset($data['tags'])) {
96
+        if (isset($data['tags'])) {
97 97
             $this->setTags($data['tags']);
98 98
         }
99 99
 
100
-        if(isset($data['label'])) {
100
+        if (isset($data['label'])) {
101 101
             $this->/** @scrutinizer ignore-call */setLabel($data['label']);
102 102
         }
103 103
     }
Please login to merge, or discard this patch.
src/Check/CheckArraybleTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function offsetGet($offset)
36 36
     {
37
-        if($this->checks[$offset] instanceof Proxy) {
37
+        if ($this->checks[$offset] instanceof Proxy) {
38 38
             $this->checks[$offset] = $this->checks[$offset]();
39 39
         }
40 40
         return $this->checks[$offset];
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      */
91 91
     public function valid()
92 92
     {
93
-        return (boolean)key($this->checks);
93
+        return (boolean) key($this->checks);
94 94
     }
95 95
 
96 96
     /**
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      */
107 107
     public function toArray()
108 108
     {
109
-        $out =  [];
109
+        $out = [];
110 110
         foreach ($this as $k => $v) {
111 111
             $out[$k] = $v;
112 112
         }
Please login to merge, or discard this patch.
src/DependencyInjection/Compiler/AddChecksCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         $checkDefinition = clone $checkDefinitionTpl;
30 30
 
31 31
         if ($name) {
32
-            $checkServiceAlias .= '.' . $name;
32
+            $checkServiceAlias .= '.'.$name;
33 33
         }
34 34
 
35 35
         foreach ($checkDefinition->getArguments() as $argumentIndex => $argument) {
Please login to merge, or discard this patch.
src/DependencyInjection/TviMonitorExtension.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         //$loader->load('controller.yml');
41 41
         //$loader->load('telega.yml');
42 42
 
43
-        $checksSearchPaths = isset($configs[1]['checks_search_paths'])?$configs[1]['checks_search_paths']:[];
43
+        $checksSearchPaths = isset($configs[1]['checks_search_paths']) ? $configs[1]['checks_search_paths'] : [];
44 44
         unset($configs[1]['checks_search_paths']);
45 45
 
46 46
         $configuration = new Configuration($checksSearchPaths);
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
         if (isset($config['checks'])) {
75 75
 
76
-            $config['checks'] = array_filter($config['checks'], function ($i) {return $i;});
76
+            $config['checks'] = array_filter($config['checks'], function($i) {return $i; });
77 77
 
78 78
             $containerParams = [];
79 79
             $checksLoaded = [];
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
                 $checkMatadata = $checkMatadatas[$checkName];
85 85
                 $service = $checkMatadata['service'];
86 86
 
87
-                $path = $checkMatadata['path']. DIRECTORY_SEPARATOR . $checkMatadata['conf'];
87
+                $path = $checkMatadata['path'].DIRECTORY_SEPARATOR.$checkMatadata['conf'];
88 88
 
89 89
                 if (!in_array($path, $checksLoaded)) {
90 90
 
@@ -92,14 +92,14 @@  discard block
 block discarded – undo
92 92
                     $checksLoaded[] = $path;
93 93
                 }
94 94
 
95
-                if(isset($checkSettings['items'])) {
95
+                if (isset($checkSettings['items'])) {
96 96
 
97 97
                     $items = $checkSettings['items'];
98 98
 
99 99
                     foreach ($items as $itemName => &$item) {
100 100
                         $item['tags'] = array_unique(array_merge($item['tags'], $checkSettings['tags']));
101 101
 
102
-                        if($item['label'] == null && $checkSettings['label'] != null) {
102
+                        if ($item['label'] == null && $checkSettings['label'] != null) {
103 103
                             $label = $checkSettings['label'];
104 104
                             $label = sprintf($label, $itemName);
105 105
                             $item['label'] = $label;
Please login to merge, or discard this patch.
src/Runner/Reporter/ArrayReporter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,8 @@
 block discarded – undo
56 56
         ];
57 57
 
58 58
         $data = $result->getData();
59
-        if($data !== null) {
60
-            if($data instanceof \Exception) {
59
+        if ($data !== null) {
60
+            if ($data instanceof \Exception) {
61 61
                 $res['data'] = $data->getMessage();
62 62
             } else {
63 63
                 $res['data'] = $data;
Please login to merge, or discard this patch.
src/Runner/Reporter/ConsoleReporter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,10 +79,10 @@
 block discarded – undo
79 79
         $message = $result->getMessage();
80 80
         if ($message) {
81 81
             $data = $result->getData();
82
-            if($data !== null) {
82
+            if ($data !== null) {
83 83
                 $dataOut = json_encode($data);
84 84
 
85
-                if(strlen($dataOut) > 100) {
85
+                if (strlen($dataOut) > 100) {
86 86
                     $dataOut .= "\n";
87 87
                 }
88 88
             }
Please login to merge, or discard this patch.
src/DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,10 +91,10 @@
 block discarded – undo
91 91
         $node = $builder
92 92
             ->root('checks', 'array')
93 93
             ->beforeNormalization()
94
-            ->always(function ($value) {
94
+            ->always(function($value) {
95 95
                 foreach ($value as $k=>$v) {
96 96
                     $newK = str_replace('(s)', '_factory', $k);
97
-                    if($newK != $k) {
97
+                    if ($newK != $k) {
98 98
                         $value[$newK] = $value[$k];
99 99
                         unset($value[$k]);
100 100
                     }
Please login to merge, or discard this patch.
src/Command/CheckGeneratorCommand.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 block discarded – undo
169 169
 
170 170
                     $fPath = sprintf('%s%s%s%s%s%s%s%s%s',
171 171
                         $bundle->getPath(),
172
-                       DIRECTORY_SEPARATOR,
172
+                        DIRECTORY_SEPARATOR,
173 173
                         $testPath,
174 174
                         DIRECTORY_SEPARATOR,
175 175
                         'Test',
Please login to merge, or discard this patch.
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
             ->setName('tvi:monitor:generator:check')
55 55
             ->setDescription('Generates check plugin from tvi monitor template')
56 56
             ->addArgument('checker', InputArgument::REQUIRED, 'Check name')
57
-            ->addOption('group', 'g',InputOption::VALUE_OPTIONAL, 'Check group')
58
-            ->addOption('integration-test-src', null,InputOption::VALUE_OPTIONAL, 'Path to integration tests src', null)
57
+            ->addOption('group', 'g', InputOption::VALUE_OPTIONAL, 'Check group')
58
+            ->addOption('integration-test-src', null, InputOption::VALUE_OPTIONAL, 'Path to integration tests src', null)
59 59
             ->addOption('no-backup', 'b', InputOption::VALUE_NONE, 'Do not backup existing check files.')
60 60
             ->setHelp(<<<EOT
61 61
 The <info>%command.name%</info> command generates check classes
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         @list($bundleName, $checkPath) = (count($r) == 1) ? [null, current($r)] : $r;
108 108
 
109 109
         /* @var $bundle Bundle */
110
-        if(!$bundleName) {
110
+        if (!$bundleName) {
111 111
             $defaultBundle = 'TviMonitorBundle';
112 112
             $bundle = $this->getApplication()->getKernel()->getBundle($defaultBundle);
113 113
             $output->writeln(sprintf('<info>Use default bundle <comment>%s</comment></info>', $bundle->getNamespace()));
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
         }
122 122
 
123 123
         preg_match('#^(.*?)(\w+)$#', $checkPath, $m);
124
-        list($checkNamespace, $checkName) =  [$m[1], $m[2]];
124
+        list($checkNamespace, $checkName) = [$m[1], $m[2]];
125 125
 
126 126
         $checkNamespace = preg_replace('#\\\$#', '', $checkNamespace);
127 127
         $bundleNamespace = $bundle->getNamespace();
@@ -145,14 +145,14 @@  discard block
 block discarded – undo
145 145
 
146 146
         //CHECK_GROUP
147 147
         $group = $input->getOption('group');
148
-        $CHECK_GROUP = $group ? $group: $CHECK_ALIAS;
148
+        $CHECK_GROUP = $group ? $group : $CHECK_ALIAS;
149 149
 
150 150
         $checkPath = sprintf('%s%s%s', $bundle->getPath(), DIRECTORY_SEPARATOR, $checkPath);
151 151
         $checkPath = str_replace('\\', DIRECTORY_SEPARATOR, $checkPath);
152 152
 
153
-        if(is_dir($checkPath)) {
153
+        if (is_dir($checkPath)) {
154 154
 
155
-            if($noBackup && is_dir($checkPath)) {
155
+            if ($noBackup && is_dir($checkPath)) {
156 156
                 $output->writeln(sprintf('<info><error>Check %s exist</error>. Use --no-backup flag to rewrite</info>', $NAMESPACE));
157 157
                 exit(1);
158 158
             } else {
@@ -164,17 +164,17 @@  discard block
 block discarded – undo
164 164
 
165 165
         foreach ($this->tpls as $f) {
166 166
 
167
-            if(in_array($f->getBasename(), ['config.example.yml.twig', 'README.mdpp.twig'])) {
167
+            if (in_array($f->getBasename(), ['config.example.yml.twig', 'README.mdpp.twig'])) {
168 168
                 continue;
169 169
             }
170 170
 
171 171
             /* @var SplFileInfo $f */
172 172
             $fName = $f->getBasename('.twig');
173 173
 
174
-            if($fName == 'Test.php.integration') {
174
+            if ($fName == 'Test.php.integration') {
175 175
 
176 176
                 $testPath = $input->getOption('integration-test-src');
177
-                if(!$testPath) {
177
+                if (!$testPath) {
178 178
                     continue;
179 179
                 } else {
180 180
                     $fName = $f->getBasename('.integration.twig');
@@ -194,8 +194,8 @@  discard block
 block discarded – undo
194 194
                         );
195 195
                     $fPath = preg_replace('#\\\+#', '/', $fPath);
196 196
 
197
-                    if(is_dir($fPath)) {
198
-                        if($noBackup && is_dir($fPath)) {
197
+                    if (is_dir($fPath)) {
198
+                        if ($noBackup && is_dir($fPath)) {
199 199
                             $output->writeln(sprintf('<info>Tests for <error>check %s exist</error>. Use --no-backup flag to rewrite</info>', $NAMESPACE));
200 200
                             continue;
201 201
                         } else {
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
                         @mkdir($fPath, 0775, true) && !is_dir($fPath);
206 206
                     }
207 207
                 }
208
-                $TEST_NAMESPACE = sprintf('%s\%s\%s\%s', $bundleNamespace,'Test', $checkNamespace, $checkName);
208
+                $TEST_NAMESPACE = sprintf('%s\%s\%s\%s', $bundleNamespace, 'Test', $checkNamespace, $checkName);
209 209
 
210 210
                 $tplData = [
211 211
                     'NAMESPACE'      => $TEST_NAMESPACE,
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 
221 221
                 file_put_contents($path, $res);
222 222
 
223
-                $this->createFile($fPath,'config.example.yml.twig','config.yml', $tplData);
223
+                $this->createFile($fPath, 'config.example.yml.twig', 'config.yml', $tplData);
224 224
 
225 225
             } else {
226 226
                 $path = sprintf('%s%s%s', $checkPath, DIRECTORY_SEPARATOR, $fName);
@@ -236,8 +236,8 @@  discard block
 block discarded – undo
236 236
 
237 237
                 file_put_contents($path, $res);
238 238
 
239
-                $this->createFile($checkPath,'config.example.yml.twig','config.example.yml', $tplData);
240
-                $this->createFile($checkPath,'README.mdpp.twig','README.mdpp', $tplData);
239
+                $this->createFile($checkPath, 'config.example.yml.twig', 'config.example.yml', $tplData);
240
+                $this->createFile($checkPath, 'README.mdpp.twig', 'README.mdpp', $tplData);
241 241
             }
242 242
         }
243 243
     }
@@ -254,13 +254,13 @@  discard block
 block discarded – undo
254 254
      */
255 255
     private function createFile(string $basePath, string $from, string $to, array $tplData)
256 256
     {
257
-        $r = array_filter($this->tpls, function (SplFileInfo $f) use($from) {
257
+        $r = array_filter($this->tpls, function(SplFileInfo $f) use($from) {
258 258
             return $f->getBasename() == $from;
259 259
         });
260 260
 
261 261
         /* @var  SplFileInfo $f */
262 262
         $f = current($r);
263
-        if($f) {
263
+        if ($f) {
264 264
             $res = $this->twig->render($f->getRelativePathname(), $tplData);
265 265
             $savePath = sprintf('%s%s%s', $basePath, DIRECTORY_SEPARATOR, $to);
266 266
             file_put_contents($savePath, $res);
Please login to merge, or discard this patch.