Server IP : 23.254.227.96 / Your IP : 216.73.216.7 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/viralblo/instantblog/vendor/fakerphp/faker/src/Faker/ORM/CakePHP/ |
Upload File : |
<?php namespace Faker\ORM\CakePHP; class Populator { protected $generator; protected $entities = []; protected $quantities = []; protected $guessers = []; public function __construct(\Faker\Generator $generator) { $this->generator = $generator; } /** * @return \Faker\Generator */ public function getGenerator() { return $this->generator; } /** * @return array */ public function getGuessers() { return $this->guessers; } /** * @return $this */ public function removeGuesser($name) { if ($this->guessers[$name]) { unset($this->guessers[$name]); } return $this; } /** * @throws \Exception * * @return $this */ public function addGuesser($class) { if (!is_object($class)) { $class = new $class($this->generator); } if (!method_exists($class, 'guessFormat')) { throw new \Exception('Missing required custom guesser method: ' . get_class($class) . '::guessFormat()'); } $this->guessers[get_class($class)] = $class; return $this; } /** * @param array $customColumnFormatters * @param array $customModifiers * * @return $this */ public function addEntity($entity, $number, $customColumnFormatters = [], $customModifiers = []) { if (!$entity instanceof EntityPopulator) { $entity = new EntityPopulator($entity); } $entity->columnFormatters = $entity->guessColumnFormatters($this); if ($customColumnFormatters) { $entity->mergeColumnFormattersWith($customColumnFormatters); } $entity->modifiers = $entity->guessModifiers($this); if ($customModifiers) { $entity->mergeModifiersWith($customModifiers); } $class = $entity->class; $this->entities[$class] = $entity; $this->quantities[$class] = $number; return $this; } /** * @param array $options * * @return array */ public function execute($options = []) { $insertedEntities = []; foreach ($this->quantities as $class => $number) { for ($i = 0; $i < $number; ++$i) { $insertedEntities[$class][] = $this->entities[$class]->execute($class, $insertedEntities, $options); } } return $insertedEntities; } }