Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Domain-Driven Design in PHP
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Wojciech Sznapka
September 27, 2014
Programming
4
2.1k
Domain-Driven Design in PHP
Wojciech Sznapka
September 27, 2014
Tweet
Share
More Decks by Wojciech Sznapka
See All by Wojciech Sznapka
Getting started with Firebase in Angular
sznapka
1
99
PiHome – home automation done with Raspberry PI and Python
sznapka
0
430
Big data in the trenches
sznapka
1
420
PiHome – home automation done with Raspberry PI and Python
sznapka
0
390
Map-Reduce patterns
sznapka
3
300
An introduction to AngularJS
sznapka
0
250
Achieving wise architecture with Symfony2 @ SPUG#5
sznapka
2
250
Smart development environments
sznapka
2
1.6k
Automated tests - facts and myths
sznapka
1
1.7k
Other Decks in Programming
See All in Programming
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
890
存在論的プログラミング: 時間と存在を記述する
koriym
3
310
CSC307 Lecture 15
javiergs
PRO
0
260
どんと来い、データベース信頼性エンジニアリング / Introduction to DBRE
nnaka2992
1
320
Java 21/25 Virtual Threads 소개
debop
0
200
メタプログラミングで実現する「コードを仕様にする」仕組み/nikkei-tech-talk43
nikkei_engineer_recruiting
0
200
Ruby and LLM Ecosystem 2nd
koic
1
1.2k
nuget-server - あなたが必要だったNuGetサーバー
kekyo
PRO
0
370
20260315 AWSなんもわからん🥲
chiilog
2
170
GC言語のWasm化とComponent Modelサポートの実践と課題 - Scalaの場合
tanishiking
0
120
[PHPerKaigi 2026]PHPerKaigi2025の企画CodeGolfが最高すぎて社内で内製して半年運営して得た内製と運営の知見
ikezoemakoto
0
240
ポーリング処理廃止によるイベント駆動アーキテクチャへの移行
seitarof
3
1.1k
Featured
See All Featured
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
54k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3.3k
How to Align SEO within the Product Triangle To Get Buy-In & Support - #RIMC
aleyda
1
1.5k
Testing 201, or: Great Expectations
jmmastey
46
8.1k
Why Mistakes Are the Best Teachers: Turning Failure into a Pathway for Growth
auna
0
89
B2B Lead Gen: Tactics, Traps & Triumph
marketingsoph
0
84
Max Prin - Stacking Signals: How International SEO Comes Together (And Falls Apart)
techseoconnect
PRO
0
120
<Decoding/> the Language of Devs - We Love SEO 2024
nikkihalliwell
1
160
AI: The stuff that nobody shows you
jnunemaker
PRO
3
460
Marketing Yourself as an Engineer | Alaka | Gurzu
gurzu
0
160
Stop Working from a Prison Cell
hatefulcrawdad
274
21k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.4k
Transcript
Once upon the time, in ancient Greece...
Hercules got into to serious troubles...
King Eurystheus ordered Hercules to clean up Augeas' stables
The stables was complex and full of mud
As accounted for real hero, Hercules used nifty trick
He changed flow of a river and directed it into
two holes in opposite walls
The task has been solved in a single day
Unfortunately there’s no such heroic attempts in history of software
development
Instead of heroes, you need ...
Domain-Driven Design in PHP Wojciech Sznapka PHPCon 2014
Hi! I'm Wojciech Sznapka * Head Of Development @ Cherry
Poland * Coding since 10 years * Interested in architecture, Big Data, Ice Hockey
DDD essentials
Domain-Driven Design is a way of developing complex software ...
... by focusing on core domain first ...
... modeling and abstracting reality using “building blocks” and proven
design patterns ...
and delaying technical decisions as much as possible.
It’s all about the domain
You can’t build properly working software without deep domain knowledge
But, you won’t understand the whole domain at once. It's
an iterative process
You need evolving model
It’s crucial to have common understanding from day one...
… and to speak Ubiquitous Language with stakeholders and Domain
Experts
The model
Good model act as Ubiquitous Language
None
It reflect domain logic as much as possible
It's build using layers * User interface * Application layer
* Domain layer * Infrastructure layer
* source: Domain-Driven Design Quickly by InfoQ
User interface presents and interprets user commands
Application layer coordinates activities. It's ought to be very thin
Domain layer is the heart of the system, responsible for
business logic
Infrastructure layer acts as support, providing persistence, tools, etc.
Let’s speak about entities, DDD first class citizens
Entity represents a business being
Entity is not a simple Data Transfer Object or data
container
Therefore avoid anemic entities . Good entity should provide behavior,
besides identity and attributes!
Infrastructure layer helps with persisting entities (using a backing service*
of your choice) * http://12factor.net/backing-services
None
Entities are supported by value objects
Value objects conceptually does not provide any identity, so they
can be shared
To achieve that, value objects need to be immutable* *
http://blog.sznapka.pl/immutable-value-objects-in-php
The important fact: value objects are type hintable
None
Large graph of entities can be difficult to handle consistently
DDD introduced a term Aggregate which is collection of objects
...
... bound with aggregate root and hiding underlying objects from
the external world
Aggregates provides a coherent interface to operate on sub-graph of
the model
During development of ubiquitous language you’ll find that some actions
don’t belong to any object
Such situations are solved with domain services
Services employ various entities, value objects, factories, repositories to do
their job
None
When dealing with complex objects, their creation could be complex
and it's good to hide that logic
Well known factories will do the trick
Factory hides instantiation complexity and enables interchangeability in the future
None
While factories help with objects creation, it is equally important
to abstract objects retrieval
Repository design pattern abstracts objects retrieval from a storage
It’s extremely important to place all data access logic in
repositories
Infrastructure layer helps a lot here
It uses your ORM library to build specific queries or
use other vendors to obtain objects
More important fact is that repository* is replaceable * like
the most of DDD building blocks
Model boundaries
It’s important to draw bold borders inside your system, as
it grows and becomes complex
None
None
None
When different stakeholders start to confuse you with vocabulary
It's good time to think about bounded contexts
“Bounded Context is a central pattern in Domain-Driven Design”* *
http://martinfowler.com/bliki/BoundedContext.html
It’s quite sure, that bounded contexts will share common concepts
Therefore create context map to outline points of contact between
them
Also, distinguish core domain from generic ones...
Choose proper bounded context collaboration model
Shared kernel, when two teams work closely on subset of
domain
They acts as partners, and access each other bounded context
with common code
Customer-Supplier, when upstream team provides an API and downstream teams
consume it
Customer team can influence Supplier to modify model
Open Host Service, when interface is defined by widely known
protocol
It's typical SOA approach
Or: * Partner * Conformist * Separate ways * Anticorruption
layer * Published language
Taming the beast A.K.A. Summary
OOP is not enough
DDD is great for complex problems
You can pick parts of DDD and still benefit out
of it
You should be aware of duplication and complex structures in
DDD
DDD doesn't care about your fancy: Symfony/Zend Framework/Laravel * *
delete where inapplicable
Be PRAGMATIC! * * take care about your core domain
in the first place
Thanks for your attention! Ask me anything blog.sznapka.pl
[email protected]
twitter.com/sznapka
Your feedback is important! https://joind.in/11844