initial commit
[namibia] / module / Person / src / Person / Fixture / Contact.php
1 <?php
2 namespace Person\Fixture;
3
4
5
6 class Contact extends \Fixture\Service\Fixture
7 {
8
9         static public function build()
10         {
11                 parent::addStack('\\Person\\Entity\\Contact', array(
12                                 'Contact.Jack'       => array(
13                                                 'firstName'  => 'Jack',
14                                                 'familyName' => 'Trader',
15                                                 'mobile'     => '+27821234567',
16                                                 'office'     => '+27111234567',
17                                                 'email'      => 'a@imperial.com'
18                                 ),
19                                 'Contact.Dave'       => array(
20                                                 'firstName'  => 'Dave',
21                                                 'familyName' => 'Thomas',
22                                                 'mobile'     => '+27833248462',
23                                                 'office'     => '+27123248462',
24                                                 'email'      => 'dave@bid4cars.co.za'
25                                 ),
26                                 'Contact.Byron'      => array(
27                                                 'firstName'  => 'Byron',
28                                                 'familyName' => 'Stephenson',
29                                                 'mobile'     => '+27826039258',
30                                                 'office'     => '+27126039258',
31                                                 'email'      => 'bstephenson@cargomotors.co.za'
32                                 )
33                 ));
34         }
35
36 }