*/ public function definition(): array { return [ 'time' => 45069432, 'blocks' => [ ['id' => 'TTzz66', 'type' => 'paragraph', 'data' => ['text' => 'lorem']] ], 'version' => '1.0', ]; } public function text(int $id, string $text): self { return $this->state($this->paragraphBlock($id, $text)); } /** * @return array */ public function paragraphBlock(int $id, string $text): array { return [ 'time' => 1, 'version' => '1.0', 'blocks' => [ ['id' => $id, 'type' => 'paragraph', 'data' => ['text' => $text]] ], ]; } }