for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Bluz PHP Team
* @link https://github.com/bluzphp/skeleton
*/
declare(strict_types=1);
namespace Application\Auth;
use Bluz\Auth\Model\AbstractRow;
* Auth Row
*
* @package Application\Auth
* @property string $created
* @property string $updated
class Row extends AbstractRow
{
* {@inheritdoc}
public function beforeInsert(): void
$this->created = gmdate('Y-m-d H:i:s');
}
public function beforeUpdate(): void
$this->updated = gmdate('Y-m-d H:i:s');