24 lines
401 B
PHP
24 lines
401 B
PHP
<?php
|
|
namespace PSC\Library\Calc\Option\Parser;
|
|
|
|
use PSC\Library\Calc\Option\Type\Textarea as PSCTextarea;
|
|
|
|
class Textarea extends Base
|
|
{
|
|
|
|
protected $element;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->element = new \PSC\Library\Calc\Option\Type\Textarea();
|
|
}
|
|
|
|
public function parseXML(): PSCTextarea
|
|
{
|
|
parent::parseXML();
|
|
|
|
return $this->element;
|
|
}
|
|
|
|
}
|