<?php/** * Lea * * GNU General Public License * * Copyright © 2010 - 2025, Yohann Schwan. All rights reserved. */namespace Lea\Controller { class DataCreate extends \Lys\Controller { /** * @trait \Lea\DataHelper */ use DataHelper; /** * @args void * @return bool */ function execute() { if(parent::execute()) { return $this->data->add($_REQUEST); } } }}