Completed
Push — master ( 1ed895...42a1ad )
by Daniel
01:44
created
src/PhpcrOdmEnhancer.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Psi\Component\Description\Enhancer\Doctrine;
4 4
 
5
-use Doctrine\ODM\PHPCR\Mapping\ClassMetadataFactory;
6 5
 use Doctrine\Common\Util\ClassUtils;
7 6
 use Psi\Component\Description\EnhancerInterface;
8 7
 use Psi\Component\Description\DescriptionInterface;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $childClasses = $metadata->getChildClasses();
33 33
 
34 34
         // cast child classes to strings because of https://github.com/doctrine/phpcr-odm/issues/723
35
-        $childClasses = array_map(function ($value) {
35
+        $childClasses = array_map(function($value) {
36 36
             return (string) $value;
37 37
         }, $childClasses);
38 38
 
Please login to merge, or discard this patch.