1 | <?php |
||
25 | class LoadUserData extends AbstractFixture implements ContainerAwareInterface, OrderedFixtureInterface |
||
26 | { |
||
27 | private static $names = [ |
||
28 | 'Tricia Carbonneau', |
||
29 | 'Cindy Mendoza', |
||
30 | 'Alessandra Wollard', |
||
31 | 'Vernell Fleeman', |
||
32 | 'Chad Ferebee', |
||
33 | 'Olinda Resendez', |
||
34 | 'Iva Moniz', |
||
35 | 'Alec Cuthbertson', |
||
36 | 'Candie Foret', |
||
37 | 'Burma Stgermain', |
||
38 | 'Rosaline Spiegel', |
||
39 | 'Elois Hipsher', |
||
40 | 'Fleta Hatter', |
||
41 | 'Jordan Muirhead', |
||
42 | 'Shala Thrift', |
||
43 | 'Dannette Newell', |
||
44 | 'Brett Voigt', |
||
45 | 'Lesley Varney', |
||
46 | 'Rich Larocca', |
||
47 | 'Ofelia Deckert', |
||
48 | 'Tamera Bagdon', |
||
49 | 'Kecia Buttner', |
||
50 | 'Bronwyn Mattia', |
||
51 | 'Brooks Mcpartland', |
||
52 | 'Candelaria Buechner', |
||
53 | 'Yolando Dery', |
||
54 | 'Daniele Guan', |
||
55 | 'Ehtel Durrant', |
||
56 | 'Rocco Medlen', |
||
57 | 'Sally Cornejo', |
||
58 | 'Dorinda Riser', |
||
59 | 'Tana Berthiaume', |
||
60 | 'Clelia Senger', |
||
61 | 'Norbert Petteway', |
||
62 | 'Agatha Gaus', |
||
63 | 'Lauran Depaolo', |
||
64 | 'Treasa Waid', |
||
65 | 'Truman Sybert', |
||
66 | 'Annmarie Helt', |
||
67 | 'Librada Mistretta', |
||
68 | 'Kristan Mount', |
||
69 | 'Gertha Hines', |
||
70 | 'Ashley Mangual', |
||
71 | 'Florrie Hallford', |
||
72 | 'Pricilla Weekes', |
||
73 | 'Celestine Boelter', |
||
74 | 'Chas Manross', |
||
75 | 'Elvie Glavin', |
||
76 | 'Rolanda Mcspadden', |
||
77 | 'Kimberlee Wood', |
||
78 | ]; |
||
79 | |||
80 | private $container; |
||
81 | |||
82 | public function setContainer(ContainerInterface $container = null) |
||
86 | |||
87 | /** |
||
88 | * @return \FOS\UserBundle\Model\UserManagerInterface |
||
89 | */ |
||
90 | public function getUserManager() |
||
94 | |||
95 | public function load(ObjectManager $manager) |
||
125 | |||
126 | public function getOrder() |
||
130 | } |
||
131 |