Hey, I have just reduced the price for all products. Let's prepare our programming skills for the post-COVID era. Check it out »
Command

Command in PHP

Command is behavioral design pattern that converts requests or simple operations into objects.

The conversion allows deferred or remote execution of commands, storing command history, etc.

Usage of the pattern in PHP

Complexity:

Popularity:

Usage examples: The Command pattern is pretty common in PHP code. It’s used for queueing tasks, tracking the history of executed tasks and performing the “undo”.

Identification: The Command pattern is recognizable by behavioral methods in an abstract/interface type (sender) which invokes a method in an implementation of a different abstract/interface type (receiver) which has been encapsulated by the command implementation during its creation. Command classes are usually limited to specific actions.

Command in Other Languages

Design Patterns: Command in Java Design Patterns: Command in C# Design Patterns: Command in C++ Design Patterns: Command in Python Design Patterns: Command in Ruby Design Patterns: Command in Swift Design Patterns: Command in TypeScript Design Patterns: Command in Go