Helper function to create paragraph text.
string $text: Paragraph text.
string $format: Text format.
\Drupal\Core\Entity\EntityInterface Paragraphs text entity.
function _paragraphs_collection_demo_create_text_paragraph($text, $format = 'basic_html') {
$text_paragraph = Paragraph::create([
'type' => 'text',
'paragraphs_text' => [
'value' => $text,
'format' => $format,
],
]);
$text_paragraph
->save();
return $text_paragraph;
}