IT Enthusiast, Cloud and Mobile Security Enthusiast, Public speaker
A Simple Person Who Love Code, Share Knowledge and Always Learning about Java, PHP, DevOps, Android, Javascript, mobile and webapps security.
Design Patterns?
Design Patterns are reusable solutions to commonly occuring problems(in the context of software design). Design patterns were started as best practices that were applied again and again to similar problems encountered in different contexts
Plain Old {Insert Language Here} Object is an simple approach that says you don't always need to use an extensive class to store data or perform logic.
class HelloWorld{ private $value; public function getValue(): ?string { return $this->value; } public function setValue(string $value) { $this->value = $value; } }