proofdb/vendor/illuminate/database/Eloquent/Attributes/WithoutTimestamps.php
2026-05-01 23:40:14 +08:00

18 lines
254 B
PHP

<?php
namespace Illuminate\Database\Eloquent\Attributes;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
class WithoutTimestamps
{
/**
* Create a new attribute instance.
*/
public function __construct()
{
//
}
}