Skip to content

Commit 9ea2db4

Browse files
committed
Fix cs
1 parent 3fc789b commit 9ea2db4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Kernel/Core/DependencyInjector.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ public function getNativeAnnotateInjections($phpDocument): array
1818
* @var \phpDocumentor\Reflection\DocBlock\Tags\Generic $nativeClass
1919
*/
2020
switch ($type = trim($nativeClass->getDescription())) {
21-
case 'ConstantPool';
21+
case 'ConstantPool':
2222
$injections[] = $this->getConstantPool();
2323
break;
24-
case 'JavaClass';
24+
case 'JavaClass':
2525
$injections[] = $this->javaClass;
2626
break;
27-
case 'JavaClassInvoker';
27+
case 'JavaClassInvoker':
2828
$injections[] = $this->javaClassInvoker;
2929
break;
3030
case 'Attributes':

0 commit comments

Comments
 (0)