Design patterns in PHP: Replace Constructors with Creation Methods

This tutorial describes a TDD approach to refactor code to Replace Constructors with Creation Methods pattern. Starting from working code and some test, refactoring steps are applied to obtain cleaner code

Category: Development
Subcategories: Tutorials
20/08/2019
9193 times
Design patterns in PHP: Replace Constructors with Creation Methods
Related posts
What's behind Laravel Encryption/Decryption

My system is safe, it uses encryption. You heard/said this from time to time. Sure, but why and how is it safe? Do you really know this?

Laravel Visitor

LaravelVisitor is a Visitor Design Pattern implementation for Laravel. It allows to easily execute processing of collections of arbitrary elements, without requiring to use repeated conditionals, thus improving code abstraction.

TDD implementation of Finite State Machine (FSM) with Laravel

This article describes a TDD (Test Driven Development) approach to implement a Finite State Machine (FSM) using PHP+Laravel. However, such method is general and could be used in the programming language of your choice.

Laravel: Rendering view as file donwload

More than once I needed to render a laravel view as a downlodable file. This task could be easily accomplished