Failed Conditions
Pull Request — master (#6762)
by Claudio
19:02
created
tests/Doctrine/Tests/ORM/Query/LanguageRecognitionTest.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
             $this->addToAssertionCount(1);
28 28
         } catch (QueryException $e) {
29 29
             if ($debug) {
30
-                echo $e->getTraceAsString() . PHP_EOL;
30
+                echo $e->getTraceAsString().PHP_EOL;
31 31
             }
32 32
 
33 33
             $this->fail($e->getMessage());
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
             $this->fail('No syntax errors were detected, when syntax errors were expected');
43 43
         } catch (QueryException $e) {
44 44
             if ($debug) {
45
-                echo $e->getMessage() . PHP_EOL;
46
-                echo $e->getTraceAsString() . PHP_EOL;
45
+                echo $e->getMessage().PHP_EOL;
46
+                echo $e->getTraceAsString().PHP_EOL;
47 47
             }
48 48
             $this->addToAssertionCount(1);
49 49
         }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
             ['SELECT foo: FROM Doctrine\Tests\Models\CMS\CmsUser foo:'],
113 113
 
114 114
             /* Checks for invalid AbstractSchemaName */
115
-            ['SELECT u FROM UnknownClass u'],  // unknown
115
+            ['SELECT u FROM UnknownClass u'], // unknown
116 116
             ['SELECT u FROM Unknown\Class u'], // unknown with namespace
117 117
             ['SELECT u FROM \Unknown\Class u'], // unknown, leading backslash
118 118
             ['SELECT u FROM Unknown\\\\Class u'], // unknown, syntactically bogus (duplicate \\)
@@ -585,7 +585,7 @@  discard block
 block discarded – undo
585 585
      */
586 586
     public function testDQLKeywordInJoinIsAllowed()
587 587
     {
588
-        self::assertValidDQL('SELECT u FROM ' . __NAMESPACE__ . '\DQLKeywordsModelUser u JOIN u.group g');
588
+        self::assertValidDQL('SELECT u FROM '.__NAMESPACE__.'\DQLKeywordsModelUser u JOIN u.group g');
589 589
     }
590 590
 
591 591
     /**
@@ -593,7 +593,7 @@  discard block
 block discarded – undo
593 593
      */
594 594
     public function testDQLKeywordInConditionIsAllowed()
595 595
     {
596
-        self::assertValidDQL('SELECT g FROM ' . __NAMESPACE__ . '\DQLKeywordsModelGroup g WHERE g.from=0');
596
+        self::assertValidDQL('SELECT g FROM '.__NAMESPACE__.'\DQLKeywordsModelGroup g WHERE g.from=0');
597 597
     }
598 598
 
599 599
     /* The exception is currently thrown in the SQLWalker, not earlier.
@@ -698,7 +698,7 @@  discard block
 block discarded – undo
698 698
      */
699 699
     public function testNewLiteralExpression()
700 700
     {
701
-        self::assertValidDQL("SELECT new " . __NAMESPACE__ . "\\DummyStruct(u.id, 'foo', 1, true) FROM Doctrine\Tests\Models\CMS\CmsUser u");
701
+        self::assertValidDQL("SELECT new ".__NAMESPACE__."\\DummyStruct(u.id, 'foo', 1, true) FROM Doctrine\Tests\Models\CMS\CmsUser u");
702 702
     }
703 703
 
704 704
     /**
@@ -706,7 +706,7 @@  discard block
 block discarded – undo
706 706
      */
707 707
     public function testNewLiteralWithSubselectExpression()
708 708
     {
709
-        self::assertValidDQL("SELECT new " . __NAMESPACE__ . "\\DummyStruct(u.id, 'foo', (SELECT 1 FROM Doctrine\Tests\Models\CMS\CmsUser su), true) FROM Doctrine\Tests\Models\CMS\CmsUser u");
709
+        self::assertValidDQL("SELECT new ".__NAMESPACE__."\\DummyStruct(u.id, 'foo', (SELECT 1 FROM Doctrine\Tests\Models\CMS\CmsUser su), true) FROM Doctrine\Tests\Models\CMS\CmsUser u");
710 710
     }
711 711
 }
712 712
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Query/CustomTreeWalkersJoinTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
             self::assertEquals($sqlToBeConfirmed, $query->getSql());
34 34
             $query->free();
35 35
         } catch (\Exception $e) {
36
-            $this->fail($e->getMessage() . ' at "' . $e->getFile() . '" on line ' . $e->getLine());
36
+            $this->fail($e->getMessage().' at "'.$e->getFile().'" on line '.$e->getLine());
37 37
 
38 38
         }
39 39
     }
@@ -74,9 +74,9 @@  discard block
 block discarded – undo
74 74
     {
75 75
         $rangeVariableDecl       = $identificationVariableDecl->rangeVariableDeclaration;
76 76
         $joinAssocPathExpression = new Query\AST\JoinAssociationPathExpression($rangeVariableDecl->aliasIdentificationVariable, 'address');
77
-        $joinAssocDeclaration    = new Query\AST\JoinAssociationDeclaration($joinAssocPathExpression, $rangeVariableDecl->aliasIdentificationVariable . 'a', null);
77
+        $joinAssocDeclaration    = new Query\AST\JoinAssociationDeclaration($joinAssocPathExpression, $rangeVariableDecl->aliasIdentificationVariable.'a', null);
78 78
         $join                    = new Query\AST\Join(Query\AST\Join::JOIN_TYPE_LEFT, $joinAssocDeclaration);
79
-        $selectExpression        = new Query\AST\SelectExpression($rangeVariableDecl->aliasIdentificationVariable . 'a', null, false);
79
+        $selectExpression        = new Query\AST\SelectExpression($rangeVariableDecl->aliasIdentificationVariable.'a', null, false);
80 80
 
81 81
         $identificationVariableDecl->joins[]                = $join;
82 82
         $selectStatement->selectClause->selectExpressions[] = $selectExpression;
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         $userMetadata    = $entityManager->getClassMetadata(CmsUser::class);
86 86
         $addressMetadata = $entityManager->getClassMetadata(CmsAddress::class);
87 87
 
88
-        $this->setQueryComponent($rangeVariableDecl->aliasIdentificationVariable . 'a',
88
+        $this->setQueryComponent($rangeVariableDecl->aliasIdentificationVariable.'a',
89 89
             [
90 90
                 'metadata'     => $addressMetadata,
91 91
                 'parent'       => $rangeVariableDecl->aliasIdentificationVariable,
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Query/ParserTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@
 block discarded – undo
29 29
      */
30 30
     public function testAbstractSchemaNameSupportsClassnamesWithLeadingBackslash()
31 31
     {
32
-        $parser = $this->createParser('\\' . CmsUser::class);
32
+        $parser = $this->createParser('\\'.CmsUser::class);
33 33
 
34
-        self::assertEquals('\\' . CmsUser::class, $parser->AbstractSchemaName());
34
+        self::assertEquals('\\'.CmsUser::class, $parser->AbstractSchemaName());
35 35
     }
36 36
 
37 37
     /**
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
             $query->free();
67 67
         } catch (\Exception $e) {
68
-            $this->fail($e->getMessage() ."\n".$e->getTraceAsString());
68
+            $this->fail($e->getMessage()."\n".$e->getTraceAsString());
69 69
         }
70 70
     }
71 71
 
@@ -1597,7 +1597,7 @@  discard block
 block discarded – undo
1597 1597
     public function testAliasDoesNotExceedPlatformDefinedLength()
1598 1598
     {
1599 1599
         self::assertSqlGeneration(
1600
-            'SELECT m FROM ' . __NAMESPACE__ .  '\\DDC1384Model m',
1600
+            'SELECT m FROM '.__NAMESPACE__.'\\DDC1384Model m',
1601 1601
             "SELECT d0_.aVeryLongIdentifierThatShouldBeShortenedByTheSQLWalker_fooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo AS ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo_0 FROM DDC1384Model d0_"
1602 1602
         );
1603 1603
     }
@@ -1630,12 +1630,12 @@  discard block
 block discarded – undo
1630 1630
     public function testSelectWithArithmeticExpressionBeforeField()
1631 1631
     {
1632 1632
         self::assertSqlGeneration(
1633
-            'SELECT - e.value AS value, e.id FROM ' . __NAMESPACE__ . '\DDC1474Entity e',
1633
+            'SELECT - e.value AS value, e.id FROM '.__NAMESPACE__.'\DDC1474Entity e',
1634 1634
             'SELECT -d0_.value AS sclr_0, d0_.id AS id_1 FROM DDC1474Entity d0_'
1635 1635
         );
1636 1636
 
1637 1637
         self::assertSqlGeneration(
1638
-            'SELECT e.id, + e.value AS value FROM ' . __NAMESPACE__ . '\DDC1474Entity e',
1638
+            'SELECT e.id, + e.value AS value FROM '.__NAMESPACE__.'\DDC1474Entity e',
1639 1639
             'SELECT d0_.id AS id_0, +d0_.value AS sclr_1 FROM DDC1474Entity d0_'
1640 1640
         );
1641 1641
     }
@@ -2297,8 +2297,8 @@  discard block
 block discarded – undo
2297 2297
     public function testHavingRegressionUsingVariableWithMathOperatorsExpression($operator)
2298 2298
     {
2299 2299
         self::assertSqlGeneration(
2300
-            'SELECT COUNT(u.name) AS countName FROM Doctrine\Tests\Models\CMS\CmsUser u HAVING 1 ' . $operator . ' countName > 0',
2301
-            'SELECT COUNT(c0_.name) AS sclr_0 FROM cms_users c0_ HAVING 1 ' . $operator . ' sclr_0 > 0'
2300
+            'SELECT COUNT(u.name) AS countName FROM Doctrine\Tests\Models\CMS\CmsUser u HAVING 1 '.$operator.' countName > 0',
2301
+            'SELECT COUNT(c0_.name) AS sclr_0 FROM cms_users c0_ HAVING 1 '.$operator.' sclr_0 > 0'
2302 2302
         );
2303 2303
     }
2304 2304
 
@@ -2320,7 +2320,7 @@  discard block
 block discarded – undo
2320 2320
      */
2321 2321
     public function getSql(SqlWalker $sqlWalker)
2322 2322
     {
2323
-        return 'ABS(' . $sqlWalker->walkSimpleArithmeticExpression($this->simpleArithmeticExpression) . ')';
2323
+        return 'ABS('.$sqlWalker->walkSimpleArithmeticExpression($this->simpleArithmeticExpression).')';
2324 2324
     }
2325 2325
 
2326 2326
     /**
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Query/CustomTreeWalkersTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         try {
44 44
             self::assertEquals($sqlToBeConfirmed, $this->generateSql($dqlToBeTested, $treeWalkers, $outputWalker));
45 45
         } catch (\Exception $e) {
46
-            $this->fail($e->getMessage() . ' at "' . $e->getFile() . '" on line ' . $e->getLine());
46
+            $this->fail($e->getMessage().' at "'.$e->getFile().'" on line '.$e->getLine());
47 47
         }
48 48
     }
49 49
 
@@ -201,9 +201,9 @@  discard block
 block discarded – undo
201 201
     {
202 202
         $rangeVariableDecl       = $identificationVariableDecl->rangeVariableDeclaration;
203 203
         $joinAssocPathExpression = new Query\AST\JoinAssociationPathExpression($rangeVariableDecl->aliasIdentificationVariable, 'address');
204
-        $joinAssocDeclaration    = new Query\AST\JoinAssociationDeclaration($joinAssocPathExpression, $rangeVariableDecl->aliasIdentificationVariable . 'a', null);
204
+        $joinAssocDeclaration    = new Query\AST\JoinAssociationDeclaration($joinAssocPathExpression, $rangeVariableDecl->aliasIdentificationVariable.'a', null);
205 205
         $join                    = new Query\AST\Join(Query\AST\Join::JOIN_TYPE_LEFT, $joinAssocDeclaration);
206
-        $selectExpression        = new Query\AST\SelectExpression($rangeVariableDecl->aliasIdentificationVariable . 'a', null, false);
206
+        $selectExpression        = new Query\AST\SelectExpression($rangeVariableDecl->aliasIdentificationVariable.'a', null, false);
207 207
 
208 208
         $identificationVariableDecl->joins[]                = $join;
209 209
         $selectStatement->selectClause->selectExpressions[] = $selectExpression;
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
         $userMetadata    = $entityManager->getClassMetadata(CmsUser::class);
213 213
         $addressMetadata = $entityManager->getClassMetadata(CmsAddress::class);
214 214
 
215
-        $this->setQueryComponent($rangeVariableDecl->aliasIdentificationVariable . 'a',
215
+        $this->setQueryComponent($rangeVariableDecl->aliasIdentificationVariable.'a',
216 216
             [
217 217
                 'metadata'     => $addressMetadata,
218 218
                 'parent'       => $rangeVariableDecl->aliasIdentificationVariable,
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Query/QueryTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
             9 => "St Julien"
165 165
         ];
166 166
 
167
-        $query  = $this->_em
167
+        $query = $this->_em
168 168
                 ->createQuery("SELECT a FROM Doctrine\Tests\Models\CMS\CmsAddress a WHERE a.city IN (:cities)")
169 169
                 ->setParameter('cities', $cities);
170 170
 
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
      */
181 181
     public function testProcessParameterValueClassMetadata()
182 182
     {
183
-        $query  = $this->_em->createQuery("SELECT a FROM Doctrine\Tests\Models\CMS\CmsAddress a WHERE a.city IN (:cities)");
183
+        $query = $this->_em->createQuery("SELECT a FROM Doctrine\Tests\Models\CMS\CmsAddress a WHERE a.city IN (:cities)");
184 184
         self::assertEquals(
185 185
             CmsAddress::class,
186 186
             $query->processParameterValue($this->_em->getClassMetadata(CmsAddress::class))
Please login to merge, or discard this patch.
Doctrine/Tests/ORM/Persisters/BasicEntityPersisterTypeValueSqlTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
         $method = new \ReflectionMethod($this->_persister, 'getSelectConditionSQL');
85 85
         $method->setAccessible(true);
86 86
 
87
-        $sql = $method->invoke($this->_persister,  ['customInteger' => 1, 'child' => 1]);
87
+        $sql = $method->invoke($this->_persister, ['customInteger' => 1, 'child' => 1]);
88 88
 
89 89
         self::assertEquals('t0.customInteger = ABS(?) AND t0.child_id = ?', $sql);
90 90
     }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Tools/EntityRepositoryGeneratorTest.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function setUp()
33 33
     {
34 34
         $this->_namespace   = uniqid('doctrine_');
35
-        $this->_tmpDir      = \sys_get_temp_dir() . DIRECTORY_SEPARATOR . $this->_namespace;
35
+        $this->_tmpDir      = \sys_get_temp_dir().DIRECTORY_SEPARATOR.$this->_namespace;
36 36
         \mkdir($this->_tmpDir);
37 37
 
38 38
         $this->_generator = new EntityGenerator();
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         $em = $this->_getTestEntityManager();
79 79
         $ns = $this->_namespace;
80 80
 
81
-        $className = $ns . '\DDC3231User1Tmp';
81
+        $className = $ns.'\DDC3231User1Tmp';
82 82
         $this->writeEntityClass(DDC3231User1::class, $className);
83 83
 
84 84
         $rpath = $this->writeRepositoryClass($className);
@@ -90,10 +90,10 @@  discard block
 block discarded – undo
90 90
         $repo = new \ReflectionClass($em->getRepository($className));
91 91
 
92 92
         self::assertTrue($repo->inNamespace());
93
-        self::assertSame($className . 'Repository', $repo->getName());
93
+        self::assertSame($className.'Repository', $repo->getName());
94 94
         self::assertSame(EntityRepository::class, $repo->getParentClass()->getName());
95 95
 
96
-        require_once __DIR__ . '/../../Models/DDC3231/DDC3231User1NoNamespace.php';
96
+        require_once __DIR__.'/../../Models/DDC3231/DDC3231User1NoNamespace.php';
97 97
 
98 98
         $className2 = 'DDC3231User1NoNamespaceTmp';
99 99
         $this->writeEntityClass(\DDC3231User1NoNamespace::class, $className2);
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         $repo2 = new \ReflectionClass($em->getRepository($className2));
108 108
 
109 109
         self::assertFalse($repo2->inNamespace());
110
-        self::assertSame($className2 . 'Repository', $repo2->getName());
110
+        self::assertSame($className2.'Repository', $repo2->getName());
111 111
         self::assertSame(EntityRepository::class, $repo2->getParentClass()->getName());
112 112
     }
113 113
 
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
         $em = $this->_getTestEntityManager();
120 120
         $ns = $this->_namespace;
121 121
 
122
-        $className = $ns . '\DDC3231User2Tmp';
122
+        $className = $ns.'\DDC3231User2Tmp';
123 123
         $this->writeEntityClass(DDC3231User2::class, $className);
124 124
 
125 125
         $rpath = $this->writeRepositoryClass($className, DDC3231EntityRepository::class);
@@ -132,11 +132,11 @@  discard block
 block discarded – undo
132 132
         $repo = new \ReflectionClass($em->getRepository($className));
133 133
 
134 134
         self::assertTrue($repo->inNamespace());
135
-        self::assertSame($className . 'Repository', $repo->getName());
135
+        self::assertSame($className.'Repository', $repo->getName());
136 136
         self::assertSame(DDC3231EntityRepository::class, $repo->getParentClass()->getName());
137 137
 
138 138
 
139
-        require_once __DIR__ . '/../../Models/DDC3231/DDC3231User2NoNamespace.php';
139
+        require_once __DIR__.'/../../Models/DDC3231/DDC3231User2NoNamespace.php';
140 140
 
141 141
         $className2 = 'DDC3231User2NoNamespaceTmp';
142 142
         $this->writeEntityClass('DDC3231User2NoNamespace', $className2);
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
         $repo2 = new \ReflectionClass($em->getRepository($className2));
152 152
 
153 153
         self::assertFalse($repo2->inNamespace());
154
-        self::assertSame($className2 . 'Repository', $repo2->getName());
154
+        self::assertSame($className2.'Repository', $repo2->getName());
155 155
         self::assertSame(DDC3231EntityRepository::class, $repo2->getParentClass()->getName());
156 156
     }
157 157
 
@@ -169,11 +169,11 @@  discard block
 block discarded – undo
169 169
         $metadata               = $cmf->getMetadataFor($className);
170 170
         $metadata->namespace    = $this->_namespace;
171 171
         $metadata->name         = $newClassName;
172
-        $metadata->customRepositoryClassName = $newClassName . "Repository";
172
+        $metadata->customRepositoryClassName = $newClassName."Repository";
173 173
 
174 174
         $this->_generator->writeEntityClass($metadata, $this->_tmpDir);
175 175
 
176
-        require $this->_tmpDir . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $newClassName) . ".php";
176
+        require $this->_tmpDir.DIRECTORY_SEPARATOR.str_replace('\\', DIRECTORY_SEPARATOR, $newClassName).".php";
177 177
     }
178 178
 
179 179
     /**
@@ -185,9 +185,9 @@  discard block
 block discarded – undo
185 185
     {
186 186
         $this->_repositoryGenerator->setDefaultRepositoryName($defaultRepository);
187 187
 
188
-        $this->_repositoryGenerator->writeEntityRepositoryClass($className . 'Repository', $this->_tmpDir);
188
+        $this->_repositoryGenerator->writeEntityRepositoryClass($className.'Repository', $this->_tmpDir);
189 189
 
190
-        return $this->_tmpDir . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $className) . 'Repository.php';
190
+        return $this->_tmpDir.DIRECTORY_SEPARATOR.str_replace('\\', DIRECTORY_SEPARATOR, $className).'Repository.php';
191 191
     }
192 192
 
193 193
 }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Tools/ConvertDoctrine1SchemaTest.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     {
31 31
         $driverMock = new DriverMock();
32 32
         $config = new Configuration();
33
-        $config->setProxyDir(__DIR__ . '/../../Proxies');
33
+        $config->setProxyDir(__DIR__.'/../../Proxies');
34 34
         $config->setProxyNamespace('Doctrine\Tests\Proxies');
35 35
         $eventManager = new EventManager();
36 36
         $conn = new ConnectionMock([], $driverMock, $config, $eventManager);
@@ -46,17 +46,17 @@  discard block
 block discarded – undo
46 46
         }
47 47
 
48 48
         $cme = new ClassMetadataExporter();
49
-        $converter = new ConvertDoctrine1Schema(__DIR__ . '/doctrine1schema');
49
+        $converter = new ConvertDoctrine1Schema(__DIR__.'/doctrine1schema');
50 50
 
51
-        $exporter = $cme->getExporter('yml', __DIR__ . '/convert');
51
+        $exporter = $cme->getExporter('yml', __DIR__.'/convert');
52 52
         $exporter->setOverwriteExistingFiles(true);
53 53
         $exporter->setMetadata($converter->getMetadata());
54 54
         $exporter->export();
55 55
 
56
-        self::assertTrue(file_exists(__DIR__ . '/convert/User.dcm.yml'));
57
-        self::assertTrue(file_exists(__DIR__ . '/convert/Profile.dcm.yml'));
56
+        self::assertTrue(file_exists(__DIR__.'/convert/User.dcm.yml'));
57
+        self::assertTrue(file_exists(__DIR__.'/convert/Profile.dcm.yml'));
58 58
 
59
-        $metadataDriver = new YamlDriver(__DIR__ . '/convert');
59
+        $metadataDriver = new YamlDriver(__DIR__.'/convert');
60 60
         $em = $this->_createEntityManager($metadataDriver);
61 61
         $cmf = new DisconnectedClassMetadataFactory();
62 62
         $cmf->setEntityManager($em);
@@ -81,8 +81,8 @@  discard block
 block discarded – undo
81 81
 
82 82
     public function tearDown()
83 83
     {
84
-        @unlink(__DIR__ . '/convert/User.dcm.yml');
85
-        @unlink(__DIR__ . '/convert/Profile.dcm.yml');
86
-        @rmdir(__DIR__ . '/convert');
84
+        @unlink(__DIR__.'/convert/User.dcm.yml');
85
+        @unlink(__DIR__.'/convert/Profile.dcm.yml');
86
+        @rmdir(__DIR__.'/convert');
87 87
     }
88 88
 }
Please login to merge, or discard this patch.