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