20 lines
347 B
PHP
20 lines
347 B
PHP
<?php
|
|
|
|
namespace Illuminate\Database\Eloquent\Attributes;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_CLASS | Attribute::IS_REPEATABLE)]
|
|
class ScopedBy
|
|
{
|
|
/**
|
|
* Create a new attribute instance.
|
|
*
|
|
* @param array|string $classes
|
|
* @return void
|
|
*/
|
|
public function __construct(array|string $classes)
|
|
{
|
|
}
|
|
}
|