master

laravel/framework

Last updated at: 29/12/2023 09:24

WithoutRelations.php

TLDR

This file contains the definition of the WithoutRelations attribute class.

Classes

WithoutRelations

The WithoutRelations class is an attribute class that can be applied to a class or property. It indicates that the associated class or property should not have any relations.

<?php

namespace Illuminate\Queue\Attributes;

use Attribute;

#[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_PROPERTY)]
class WithoutRelations
{
    //
}