Skip to content

Commit

Permalink
Merge pull request #14 from CoopBelvedere/add_with_text_to_textarea
Browse files Browse the repository at this point in the history
added text to textarea
  • Loading branch information
pascalboucher authored Oct 4, 2019
2 parents fbc2ec1 + bd54638 commit 042fda0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

namespace Belvedere\FormMaker\Contracts\Models\Nodes\Inputs\Textarea;

use Belvedere\FormMaker\Contracts\Traits\Text\HasTextContract;
use Belvedere\FormMaker\Contracts\Models\Nodes\Inputs\InputContract;

interface TextareaerContract extends InputContract
interface TextareaerContract extends HasTextContract, InputContract
{
//
}
3 changes: 3 additions & 0 deletions src/Models/Nodes/Inputs/Textarea/Textareaer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
namespace Belvedere\FormMaker\Models\Nodes\Inputs\Textarea;

use Belvedere\FormMaker\Scopes\NodeScope;
use Belvedere\FormMaker\Traits\Text\HasText;
use Belvedere\FormMaker\Models\Nodes\Inputs\Input;
use Belvedere\FormMaker\Contracts\Models\Nodes\Inputs\Textarea\TextareaerContract;

class Textareaer extends Input implements TextareaerContract
{
use HasText;

/**
* Apply the type scope.
*
Expand Down

0 comments on commit 042fda0

Please sign in to comment.