10 lines
137 B
PHP
10 lines
137 B
PHP
<?php
|
|
|
|
namespace OCA\Text\Middleware\Attribute;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_METHOD)]
|
|
class RequireDocumentSession {
|
|
}
|