|
7 | 7 | ?> |
8 | 8 | <contacts> |
9 | 9 | <?php for ($i=0; $i < 10; ++$i): ?> |
10 | | - <contact firstName="<?php echo $faker->firstName ?>" lastName="<?php echo $faker->lastName ?>" email="<?php echo $faker->email ?>" > |
11 | | - <phone number="<?php echo $faker->phoneNumber ?>"/> |
| 10 | + <contact firstName="<?php echo $faker->firstName; ?>" lastName="<?php echo $faker->lastName; ?>" email="<?php echo $faker->email; ?>" > |
| 11 | + <phone number="<?php echo $faker->phoneNumber; ?>"/> |
12 | 12 | <?php if ($faker->boolean(25)): ?> |
13 | | - <birth date="<?php echo $faker->dateTimeThisCentury->format('Y-m-d') ?>" place="<?php echo $faker->city ?>"/> |
| 13 | + <birth date="<?php echo $faker->dateTimeThisCentury->format('Y-m-d'); ?>" place="<?php echo $faker->city; ?>"/> |
14 | 14 | <?php endif; ?> |
15 | 15 | <address> |
16 | | - <street><?php echo $faker->streetAddress ?></street> |
17 | | - <city><?php echo $faker->city ?></city> |
18 | | - <postcode><?php echo $faker->postcode ?></postcode> |
19 | | - <state><?php echo $faker->state ?></state> |
| 16 | + <street><?php echo $faker->streetAddress; ?></street> |
| 17 | + <city><?php echo $faker->city; ?></city> |
| 18 | + <postcode><?php echo $faker->postcode; ?></postcode> |
| 19 | + <state><?php echo $faker->state; ?></state> |
20 | 20 | </address> |
21 | | - <company name="<?php echo $faker->company ?>" catchPhrase="<?php echo $faker->catchPhrase ?>"> |
| 21 | + <company name="<?php echo $faker->company; ?>" catchPhrase="<?php echo $faker->catchPhrase; ?>"> |
22 | 22 | <?php if ($faker->boolean(33)): ?> |
23 | | - <offer><?php echo $faker->bs ?></offer> |
| 23 | + <offer><?php echo $faker->bs; ?></offer> |
24 | 24 | <?php endif; ?> |
25 | 25 | <?php if ($faker->boolean(33)): ?> |
26 | | - <director name="<?php echo $faker->name ?>" /> |
| 26 | + <director name="<?php echo $faker->name; ?>" /> |
27 | 27 | <?php endif; ?> |
28 | 28 | </company> |
29 | 29 | <?php if ($faker->boolean(15)): ?> |
30 | 30 | <details> |
31 | 31 | <![CDATA[ |
32 | | -<?php echo $faker->text(400) ?> |
| 32 | +<?php echo $faker->text(400); ?> |
33 | 33 | ]]> |
34 | 34 | </details> |
35 | 35 | <?php endif; ?> |
|
0 commit comments