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

17 lines
232 B
PHP

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