Object Oriented Concepts

Before we go into detail, let’s define important terms related to Object Oriented Programming and Object Oriented Concepts Class − This is a programmer-defined data type, which includes local functions…

0 Comments

Abstract Class and Interface

Abstract class and interface both are used to achieve abstraction where we can declare the abstract methods. Abstract class and interface both can't be instantiated. Let's discuss the differences between…

0 Comments

How to Delete Cookies in Magento 2?

In Magento 2, cookies are deleted using Magento\Framework\Stdlib\CookieManagerInterface interface class. A cookie is deleted using the deleteCookie() function from CookieManagerInterface Interface Class in Magento 2 If you have set the…

0 Comments