Completed
Push — master ( 77d010...605e70 )
by Dmitry
01:43
created
src/Plugin/UserClasses.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@
 block discarded – undo
33 33
         return null;
34 34
     }
35 35
 
36
+    /**
37
+     * @param string $space
38
+     */
36 39
     public function mapEntity($space, $class): self
37 40
     {
38 41
         $this->validateSpace($space);
Please login to merge, or discard this patch.
src/Schema.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -89,6 +89,9 @@
 block discarded – undo
89 89
         throw new Exception("Invalid type $type");
90 90
     }
91 91
 
92
+    /**
93
+     * @return string
94
+     */
92 95
     public function formatValue(string $type, $value)
93 96
     {
94 97
         if ($value === null) {
Please login to merge, or discard this patch.
src/Space.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -325,6 +325,9 @@
 block discarded – undo
325 325
         return $this->formatNamesHash[$name];
326 326
     }
327 327
 
328
+    /**
329
+     * @return string
330
+     */
328 331
     public function getReference(string $name): ?string
329 332
     {
330 333
         return $this->isReference($name) ? $this->formatReferences[$name] : null;
Please login to merge, or discard this patch.