for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YAWIK
*
* @filesource
* @license MIT
* @copyright https://yawik.org/COPYRIGHT.php
*/
/** */
namespace Jobs\Form;
use Core\Form\MetaDataFieldset;
use Core\Form\ViewPartialProviderInterface;
use Core\Form\ViewPartialProviderTrait;
* ${CARET}
* @author Mathias Gelhausen <[email protected]>
* @author Anthonius Munthi <[email protected]>
class CustomerNoteFieldset extends MetaDataFieldset implements ViewPartialProviderInterface
{
use ViewPartialProviderTrait;
protected $defaultPartial = 'jobs/form/customer-note';
public function init()
$this->setAttribute('id', 'customerNoteFieldset');
$this->setName('customerNote');
$this->add([
'type' => 'Textarea',
'name' => 'note',
]);
}