Completed
Pull Request — master (#37)
by Grégoire
18:22
created
Entity/Definition.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     }
103 103
 
104 104
     /**
105
-     * @return mixed
105
+     * @return string
106 106
      */
107 107
     public function __toString()
108 108
     {
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
     }
231 231
 
232 232
     /**
233
-     * @return integer
233
+     * @return string
234 234
      */
235 235
     public function getOrderIndex()
236 236
     {
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
     }
310 310
 
311 311
     /**
312
-     * @return ArrayCollection
312
+     * @return Attribute
313 313
      */
314 314
     public function getAttributes()
315 315
     {
Please login to merge, or discard this patch.
CacheWarmer/EntityAnnotationCacheWarmer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         $cache = new ConfigCache($filename, $this->debug);
50 50
 
51 51
         if (!$cache->isFresh()) {
52
-            $content  = '<?php return ' . var_export($this->getEntities(), true) . ';';
52
+            $content = '<?php return ' . var_export($this->getEntities(), true) . ';';
53 53
             $cache->write($content, $this->getResources());
54 54
         }
55 55
     }
Please login to merge, or discard this patch.