- Output for 8.1.28 - 8.1.33, 8.2.17 - 8.2.29, 8.3.3 - 8.3.25, 8.4.1 - 8.4.12
- table is user
<?php
class Model {
public function insertIntoDatabase() {
echo "table is " . $this->table . "\n";
}
}
class User extends Model {
public $table = "user";
}
$user = new User();
$user->insertIntoDatabase();