Ho ottimizzato il get delle classi
Da codice:
public function get( $_property ) {
if(isset( $this->$_property )) {
return $this->$_property;
} else {
return null;
}
}
A codice:
public function get($_property) {
return isset($this->$_property) ? $this->$_property : null;
}
Che ne pensate?