Completed
Push — master ( 997533...5f070c )
by Jean-Christophe
01:37
created
Ubiquity/orm/traits/OrmUtilsFieldsTrait.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -3,6 +3,10 @@  discard block
 block discarded – undo
3 3
 namespace Ubiquity\orm\traits;
4 4
 
5 5
 trait OrmUtilsFieldsTrait {
6
+
7
+	/**
8
+	 * @param string $keyAnnotation
9
+	 */
6 10
 	abstract public static function getAnnotationInfo($class, $keyAnnotation);
7 11
 	
8 12
 	public static function getFieldTypes($className) {
@@ -55,6 +59,9 @@  discard block
 block discarded – undo
55 59
 		return \array_diff($fieldNames, $notSerializable);
56 60
 	}
57 61
 	
62
+	/**
63
+	 * @param string $class
64
+	 */
58 65
 	public static function getFormAllFields($class){
59 66
 		$result=self::getSerializableFields($class);
60 67
 		if ($manyToOne=self::getAnnotationInfo($class, "#manyToOne")) {
Please login to merge, or discard this patch.