mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
move covers attribute above the class
This commit is contained in:
18
src/Factories/Attributes/Attribute.php
Normal file
18
src/Factories/Attributes/Attribute.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user