Select the types of activity you want to include in your feed.
1<?php 2 3class Size 4{ 5 public int $height; 6 public int $width; 7 8 public function __construct(int $height, int $width) 9 { 10 $this->height = $height; 11 $this->width = $width; 12 } 13}