Tagged Questions
0
votes
2answers
201 views
Making a superclass object become a sublcass object in PHP5
<?php
class A{
//many properties
protected $myProperty1;
protected $myProperty2;
protected $myProperty3;
public function __construct(){
...