<?php class Student { private $classes; public function __construct($classes) { $this->classes = $classes; } public function getClasses() { return $this->classes; } } $mary = new Student(['CompSci2001', 'CompSci2002']); var_dump($mary->getClasses());
You have javascript disabled. You will not be able to edit any code.