| 1 | <?php |
||
| 31 | class InstitutionWithPersonalRaDetails implements JsonSerializable |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * @ORM\Id |
||
| 35 | * @ORM\Column(type="institution") |
||
| 36 | * |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | public $institution; |
||
| 40 | |||
| 41 | public static function createFrom(Institution $institution) |
||
| 49 | |||
| 50 | public function jsonSerialize() |
||
| 54 | } |
||
| 55 |
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.