Test Setup Failed
Push — 0.x ( afb1d0...539b61 )
by Pavel
13:13 queued 24s
created
src/AppBundle/Html/Tag/AttributeRemover.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         $dom = new DOMDocument();
40 40
 
41 41
         // https://stackoverflow.com/a/8218649/3121455
42
-        $dom->loadHTML('<?xml encoding="utf-8" ?>' . $html);
42
+        $dom->loadHTML('<?xml encoding="utf-8" ?>'.$html);
43 43
 
44 44
         $xpath = new DOMXPath($dom);
45 45
         $nodes = $xpath->query('//@*');
Please login to merge, or discard this patch.
src/AppBundle/DependencyInjection/VesloAppExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function load(array $configs, ContainerBuilder $container)
51 51
     {
52
-        $locator = new FileLocator(__DIR__ . implode(DIRECTORY_SEPARATOR, ['', '..', 'Resources']));
52
+        $locator = new FileLocator(__DIR__.implode(DIRECTORY_SEPARATOR, ['', '..', 'Resources']));
53 53
         $loader  = new YamlFileLoader($container, $locator);
54 54
 
55 55
         $configFiles = [
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         ];
64 64
 
65 65
         foreach ($configFiles as $configFile) {
66
-            $loader->load('config' . DIRECTORY_SEPARATOR . $configFile);
66
+            $loader->load('config'.DIRECTORY_SEPARATOR.$configFile);
67 67
         }
68 68
 
69 69
         $configuration = new Configuration();
Please login to merge, or discard this patch.
src/AnthillBundle/Command/Roadmap/ListCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 
69 69
         foreach ($roadmaps as $roadmapName => $roadmap) {
70 70
             $message .= "\n  <info>$roadmapName</info>\n";
71
-            $message .= '    Type: ' . get_class($roadmap) . "\n";
71
+            $message .= '    Type: '.get_class($roadmap)."\n";
72 72
         }
73 73
 
74 74
         $message .= "\nNew roadmaps can be registered in <comment>roadmaps.yml</comment>";
Please login to merge, or discard this patch.
AnthillBundle/Vacancy/Scanner/Strategy/HeadHunter/Api/Version20190213.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@
 block discarded – undo
234 234
 
235 235
             $propertyConfig = array_filter(
236 236
                 self::PROPERTY_MAP,
237
-                function (array $propertyConfig) use ($propertyTo) {
237
+                function(array $propertyConfig) use ($propertyTo) {
238 238
                     return $propertyTo === $propertyConfig[0];
239 239
                 }
240 240
             );
Please login to merge, or discard this patch.
src/AnthillBundle/Vacancy/Scanner/ConveyorAwareScanner.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
         $parsedDto = new ParsedDto();
64 64
         $parsedDto->setVacancy($rawDto);
65 65
 
66
-        $scannerDto  = $this->scanner instanceof MultistrategicScanner
66
+        $scannerDto = $this->scanner instanceof MultistrategicScanner
67 67
             ? new MultistrategicScannerDto()
68 68
             : new ScannerDto();
69 69
 
Please login to merge, or discard this patch.
web/app_dev.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
26 26
 // Feel free to remove this, extend it, or make something more sophisticated.
27 27
 if (!getenv('APP_DEBUG')) {
28 28
     header('HTTP/1.0 403 Forbidden');
29
-    exit('You are not allowed to access this file. Check ' . basename(__FILE__) . ' for more information.');
29
+    exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
30 30
 }
31 31
 
32
-require __DIR__ . '/../vendor/autoload.php';
32
+require __DIR__.'/../vendor/autoload.php';
33 33
 
34 34
 Debug::enable();
35 35
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             . ' as a Composer dependency to load variables from a .env file.'
42 42
         );
43 43
     }
44
-    (new Dotenv())->load(__DIR__ . '/../.env');
44
+    (new Dotenv())->load(__DIR__.'/../.env');
45 45
 }
46 46
 
47 47
 $kernel = new AppKernel($_SERVER['APP_ENV'], true);
Please login to merge, or discard this patch.
src/AnthillBundle/DependencyInjection/VesloAnthillExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function load(array $configs, ContainerBuilder $container)
51 51
     {
52
-        $locator = new FileLocator(__DIR__ . implode(DIRECTORY_SEPARATOR, ['', '..', 'Resources']));
52
+        $locator = new FileLocator(__DIR__.implode(DIRECTORY_SEPARATOR, ['', '..', 'Resources']));
53 53
         $loader  = new YamlFileLoader($container, $locator);
54 54
 
55 55
         $configFiles = [
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         ];
64 64
 
65 65
         foreach ($configFiles as $configFile) {
66
-            $loader->load('config' . DIRECTORY_SEPARATOR . $configFile);
66
+            $loader->load('config'.DIRECTORY_SEPARATOR.$configFile);
67 67
         }
68 68
 
69 69
         $configuration = new Configuration();
Please login to merge, or discard this patch.
src/SanityBundle/DependencyInjection/VesloSanityExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function load(array $configs, ContainerBuilder $container)
51 51
     {
52
-        $locator = new FileLocator(__DIR__ . implode(DIRECTORY_SEPARATOR, ['', '..', 'Resources']));
52
+        $locator = new FileLocator(__DIR__.implode(DIRECTORY_SEPARATOR, ['', '..', 'Resources']));
53 53
         $loader  = new YamlFileLoader($container, $locator);
54 54
 
55 55
         $configFiles = [
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         ];
64 64
 
65 65
         foreach ($configFiles as $configFile) {
66
-            $loader->load('config' . DIRECTORY_SEPARATOR . $configFile);
66
+            $loader->load('config'.DIRECTORY_SEPARATOR.$configFile);
67 67
         }
68 68
 
69 69
         $configuration = new Configuration();
Please login to merge, or discard this patch.
src/SanityBundle/Vacancy/Tag/Group/Provider/MinistryOfTruth.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      */
113 113
     public function getTagGroups(): iterable
114 114
     {
115
-        $cacheKey            = $this->options['cache']['namespace'] . __FUNCTION__;
115
+        $cacheKey            = $this->options['cache']['namespace'].__FUNCTION__;
116 116
         $groupDtoArrayCached = $this->cache->getItem($cacheKey);
117 117
 
118 118
         if ($groupDtoArrayCached->isHit()) {
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
         if (method_exists(OptionsResolver::class, 'isNested')) {
160 160
             $optionsResolver->setDefault(
161 161
                 'cache',
162
-                function (OptionsResolver $cacheOptionsResolver) {
162
+                function(OptionsResolver $cacheOptionsResolver) {
163 163
                     $cacheOptionsResolver->setDefault('namespace', md5(__CLASS__));
164 164
                 }
165 165
             );
Please login to merge, or discard this patch.