mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
19 lines
361 B
PHP
19 lines
361 B
PHP
<?php namespace Visiosoft\AdvsModule\Adv\Event;
|
|
|
|
use Anomaly\Streams\Platform\Ui\Form\FormBuilder;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
class ReadySimpleAdvFormFields
|
|
{
|
|
protected $fields;
|
|
public function __construct($fields)
|
|
{
|
|
$this->fields = $fields;
|
|
}
|
|
|
|
public function getFields()
|
|
{
|
|
return $this->fields;
|
|
}
|
|
}
|