From b84ed089291ffdc1e128e638d9b32b202a235235 Mon Sep 17 00:00:00 2001 From: Jan Brecka Date: Wed, 20 Nov 2013 22:25:03 +0100 Subject: [PATCH] add missing barPrototype --- Prototype/index.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Prototype/index.php b/Prototype/index.php index 70e2ac1..84f813d 100644 --- a/Prototype/index.php +++ b/Prototype/index.php @@ -10,3 +10,8 @@ for ($i = 0; $i < 10000; $i++) { $book = clone $fooPrototype; $book->setTitle('Foo Book No ' . $i); } + +for ($i = 0; $i < 5000; $i++) { + $book = clone $barPrototype; + $book->setTitle('Bar Book No ' . $i); +}