@@ 73-80 (lines=8) @@ | ||
70 | /** |
|
71 | * @return bool |
|
72 | */ |
|
73 | public function automapWithAssociation() : bool |
|
74 | { |
|
75 | if ($this->userEntity !== NULL && class_exists($this->userEntity) && $this->autoMapField === TRUE) { |
|
76 | return TRUE; |
|
77 | } |
|
78 | ||
79 | return FALSE; |
|
80 | } |
|
81 | ||
82 | /** |
|
83 | * @return bool |
|
@@ 85-92 (lines=8) @@ | ||
82 | /** |
|
83 | * @return bool |
|
84 | */ |
|
85 | public function automapWithField() : bool |
|
86 | { |
|
87 | if ($this->userEntity === NULL && $this->autoMapField === TRUE) { |
|
88 | return TRUE; |
|
89 | } |
|
90 | ||
91 | return FALSE; |
|
92 | } |
|
93 | ||
94 | /** |
|
95 | * @return bool |