public function Mock::newEntity in Realistic Dummy Content 7.2
Same name and namespace in other branches
- 8.2 api/src/Framework/Mock.php \Drupal\realistic_dummy_content_api\Framework\Mock::newEntity()
File
- api/
src/ Framework/ Mock.php, line 17
Class
- Mock
- Represents a mock framework (experimental).
Namespace
Drupal\realistic_dummy_content_api\FrameworkCode
public function newEntity($entity) {
$this
->hookEntityPresave($entity, $entity->type);
$id = rand();
$this->entites[$id] = $entity;
return $id;
}