# give/4.16.8.1/src/Framework/FieldsAPI/Paragraph.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 24 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Framework/FieldsAPI/Paragraph.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Framework/FieldsAPI/Paragraph.php
- Modified: 2023-10-16T17:55:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Framework/FieldsAPI/Paragraph.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace Give\Framework\FieldsAPI;

class Paragraph extends Element
{
    const TYPE = 'paragraph';

    protected $content = '';

    public function content(string $content): self
    {
        $this->content = $content;
        return $this;
    }

    public function getContent(): string
    {
        return $this->content;
    }
}

```
