@@ -84,6 +84,11 @@ |
||
84 | 84 | return $className; |
85 | 85 | } |
86 | 86 | |
87 | + /** |
|
88 | + * @param string $for |
|
89 | + * @param string $targetFqcn |
|
90 | + * @param string|false $fileName |
|
91 | + */ |
|
87 | 92 | private function generateCollectionClass($for, $targetFqcn, $fileName) |
88 | 93 | { |
89 | 94 | $exploded = explode('\\', $targetFqcn); |
@@ -771,6 +771,10 @@ discard block |
||
771 | 771 | return implode("\n", $lines); |
772 | 772 | } |
773 | 773 | |
774 | + /** |
|
775 | + * @param string $type |
|
776 | + * @param string $defaultValue |
|
777 | + */ |
|
774 | 778 | private function generateDocumentStubMethod(ClassMetadataInfo $metadata, $type, $fieldName, $typeHint = null, $defaultValue = null) |
775 | 779 | { |
776 | 780 | // Add/remove methods should use the singular form of the field name |
@@ -955,6 +959,9 @@ discard block |
||
955 | 959 | return implode("\n", $lines); |
956 | 960 | } |
957 | 961 | |
962 | + /** |
|
963 | + * @param integer $type |
|
964 | + */ |
|
958 | 965 | private function getInheritanceTypeString($type) |
959 | 966 | { |
960 | 967 | switch ($type) { |
@@ -972,6 +979,9 @@ discard block |
||
972 | 979 | } |
973 | 980 | } |
974 | 981 | |
982 | + /** |
|
983 | + * @param integer $policy |
|
984 | + */ |
|
975 | 985 | private function getChangeTrackingPolicyString($policy) |
976 | 986 | { |
977 | 987 | switch ($policy) { |
@@ -989,6 +999,9 @@ discard block |
||
989 | 999 | } |
990 | 1000 | } |
991 | 1001 | |
1002 | + /** |
|
1003 | + * @param string $type |
|
1004 | + */ |
|
992 | 1005 | private function getIdGeneratorTypeString($type) |
993 | 1006 | { |
994 | 1007 | switch ($type) { |