Files
pest/src/Factories/Attributes/Attribute.php
2022-03-05 17:23:03 +01:00

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;
}