Source of file RefreshEntity.php
Size: 0,295 Bytes - Last Modified: 2020-10-24T02:46:31+00:00
/home/travis/build/NextDom/nextdom-core/src/Model/Entity/Parents/RefreshEntity.php
| 123456789101112131415161718 | <?phpnamespace NextDom\Model\Entity\Parents; use NextDom\Helpers\DBHelper; trait RefreshEntity {/**      * Rafraichit les informations à partir de la base de données     *     * @throws \Exception     */public function refresh() { DBHelper::refresh($this); } } |