mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 08:17:22 +01:00
19 lines
296 B
PHP
19 lines
296 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Factories\Attributes;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
abstract class Attribute
|
|
{
|
|
/**
|
|
* Determine if the attribute should be placed above the classe instead of above the method.
|
|
*
|
|
* @var bool
|
|
*/
|
|
public const ABOVE_CLASS = false;
|
|
}
|