/
home
/
henzagold
/
server
/
vendor
/
jgrossi
/
corcel
/
src
/
Concerns
/
File Upload :
llllll
Current File: /home/henzagold/server/vendor/jgrossi/corcel/src/Concerns/CustomTimestamps.php
<?php namespace Corcel\Concerns; /** * Trait CustomTimestamps * * @package Corcel\Traits * @author Junior Grossi <juniorgro@gmail.com> */ trait CustomTimestamps { /** * @param mixed $value * @return mixed */ public function setCreatedAt($value) { $gmt_field = static::CREATED_AT . '_gmt'; $this->{$gmt_field} = $value; return parent::setCreatedAt($value); } /** * @param mixed $value * @return mixed */ public function setUpdatedAt($value) { $gmt_field = static::UPDATED_AT . '_gmt'; $this->{$gmt_field} = $value; return parent::setUpdatedAt($value); } }
Copyright ©2k19 -
Hexid
|
Tex7ure