<?php
class ? {
public $weight = 5;
public function bark(): void {
echo "woof";
}
public function eat(? $?): void {
$this->weight += $?->weight;
}
}
class ? {
public $weight = 10;
}
$? = new ?();
$?->eat(new ?);
var_dump($?->weight);

Readable PHP
This article is my 5th oldest. It is 2 words long