| 1 | <?php |
||
| 29 | final class ConfiguredInstitution |
||
| 30 | { |
||
| 31 | /** |
||
| 32 | * @ORM\Id |
||
| 33 | * @ORM\Column(type="stepup_configuration_institution") |
||
| 34 | * |
||
| 35 | * @var string |
||
| 36 | */ |
||
| 37 | public $institution; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param Institution $institution |
||
| 41 | * @return ConfiguredInstitution |
||
| 42 | */ |
||
| 43 | public static function createFrom(Institution $institution) |
||
| 50 | |||
| 51 | public function jsonSerialize() |
||
| 55 | } |
||
| 56 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..