2.4k questions

2.4k answers

99.5k users

Categories

0 votes
72 views

What is polymorphism PHP?

in Laravel by (95.8k points)

1 Answer

0 votes

Polymorphism is essentially an OOP pattern that enables numerous classes with different functionalities to execute or share a commonInterface. The usefulness of polymorphism is code written in different classes doesn't have any effect which class it belongs because they are used in the same way.

by (95.8k points)
...