Open Closed Principle ?(Php SOLID Principles)
During part two of our PHP Solids tutorial, we are going to go over the O in SOLID. The Open Closed Principle. This principle states that we must keep our classes open for extension but closed for modification.
To do this, we must refactor our extensible behavior behind an interface and then flip our dependencies to instead of checking the type and the executing the functionality, simply execute the functionality within the class type and enforce that the functionality exists via an interface that enforces the extensible behavior.
Come along as we dive into the Open Closed Principle and how to correctly implement it within PHP!
“When you have a class or method you want to extend without modifying it - separate the extensible behavior behind an interface, and then flip the dependencies”
~ Uncle Bob
What is the open closed principle?
"software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification"[Bertrand Meyer-1988]. That is, such an entity can allow its behavior to be modified without altering its source code.
Describe the open closed principle?
Meyer's original principle is redefined to refer to the use of interfaces, where multiple implementations could be created and polymorphically substituted for one another.
• Interface specifications are reused through inheritance; implementation need not be reused.
• The existing interface is closed to modifications and new implementations must, at a minimum, implement that interface.
https://cleancode.studio/series/solid-principles/episodes/2
Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «Open Closed Principle ?(Php SOLID Principles)», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.
Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.
Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!
Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.