Construct:
This method returns an instance of a class, it is a best practice to have a construct method in your class.
This method should be static but can be private or private depending on case, when calling a class from another class or job construct method can be use for this.
New:
This method is default constructor of a class, Invokes when user uses a "new" keyword.
Mostly it is protected.
This method returns an instance of a class, it is a best practice to have a construct method in your class.
This method should be static but can be private or private depending on case, when calling a class from another class or job construct method can be use for this.
New:
This method is default constructor of a class, Invokes when user uses a "new" keyword.
Mostly it is protected.