| 1 | <?php |
||
| 30 | class InstitutionWithRaLocations implements JsonSerializable |
||
| 31 | { |
||
| 32 | /** |
||
| 33 | * @ORM\Id |
||
| 34 | * @ORM\Column(type="institution") |
||
| 35 | * |
||
| 36 | * @var string |
||
| 37 | */ |
||
| 38 | public $institution; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param Institution $institution |
||
| 42 | * @return InstitutionWithRaLocations |
||
| 43 | */ |
||
| 44 | public static function createFrom(Institution $institution) |
||
| 52 | |||
| 53 | public function jsonSerialize() |
||
| 57 | } |
||
| 58 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.