9 lines
130 B
PHP
9 lines
130 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Jltx\Routes\Attribute;
|
||
|
|
|
||
|
|
use Attribute;
|
||
|
|
|
||
|
|
#[Attribute(Attribute::TARGET_METHOD)]
|
||
|
|
class Delete extends RouteBase {}
|