PHP code example of wonder-game / es-utility
1. Go to this page and download the library: Download wonder-game/es-utility library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wonder-game / es-utility example snippets
use WonderGame\EsUtility\HttpController\Admin\AdminTrait;
class MyAdminController
{
use AdminTrait;
// here are some methods from AdminTrait ....
}
use WonderGame\EsUtility\Model\AdminModelTrait;
class MyAdminModel
{
use AdminModelTrait;
// here are some methods from AdminModelTrait ....
}