PHP - Classes and Objects
Find the error in this PHP code snippet:
class Vehicle {
const WHEELS = 4;
public function wheels() {
return self->WHEELS;
}
}