mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-15 10:55:48 +02:00
add missing barPrototype
This commit is contained in:
parent
1e76d98540
commit
b84ed08929
@ -10,3 +10,8 @@ for ($i = 0; $i < 10000; $i++) {
|
|||||||
$book = clone $fooPrototype;
|
$book = clone $fooPrototype;
|
||||||
$book->setTitle('Foo Book No ' . $i);
|
$book->setTitle('Foo Book No ' . $i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for ($i = 0; $i < 5000; $i++) {
|
||||||
|
$book = clone $barPrototype;
|
||||||
|
$book->setTitle('Bar Book No ' . $i);
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user