<?php namespace Bixo\Feed\Forms; use Litepie\Form\FormInterpreter; class Interaction extends FormInterpreter { /** * Sets the form and form elements. * @return null. */ public static function setAttributes() { self::$urls = config('bixo.feed.interaction.urls'); self::$search = config('bixo.feed.interaction.search'); self::$orderBy = config('bixo.feed.interaction.order'); self::$groups = config('bixo.feed.interaction.groups'); self::$list = config('bixo.feed.interaction.list'); self::$fields = config('bixo.feed.interaction.form'); return new static(); } }