Skip to content

Commit 113e950

Browse files
committed
Fix CS
1 parent 9159299 commit 113e950

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/TypesGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public function generate($config)
202202
}
203203

204204
if (null !== $class['parent']) {
205-
$class['uses'][] = sprintf('%s\\%s', $config['types']['Thing']['namespaces']['class'], $class['parent']);
205+
$class['uses'][] = sprintf('%s\\%s', $config['types']['Thing']['namespaces']['class'], $class['parent']);
206206
}
207207

208208
// Embeddable

tests/AnnotationGenerator/ApiPlatformCoreAnnotationGeneratorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace ApiPlatform\SchemaGenerator\Tests\AnnotationGenerator;
12+
namespace ApiPlatform\SchemaGenerator\tests\AnnotationGenerator;
1313

1414
use ApiPlatform\SchemaGenerator\AnnotationGenerator\ApiPlatformCoreAnnotationGenerator;
1515
use ApiPlatform\SchemaGenerator\TypesGenerator;

tests/TypesGeneratorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace ApiPlatform\SchemaGenerator\Tests;
12+
namespace ApiPlatform\SchemaGenerator\tests;
1313

1414
use ApiPlatform\SchemaGenerator\CardinalitiesExtractor;
1515
use ApiPlatform\SchemaGenerator\TypesGenerator;

0 commit comments

Comments
 (0)