mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
20 lines
335 B
PHP
20 lines
335 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Test\AppFramework\Middleware\Mock;
|
||
|
|
|
||
|
|
use OCP\AppFramework\Controller;
|
||
|
|
use OCP\AppFramework\Http\Attribute\UseSession;
|
||
|
|
|
||
|
|
class UseSessionController extends Controller {
|
||
|
|
/**
|
||
|
|
* @UseSession
|
||
|
|
*/
|
||
|
|
public function withAnnotation() {
|
||
|
|
}
|
||
|
|
#[UseSession]
|
||
|
|
public function withAttribute() {
|
||
|
|
}
|
||
|
|
public function without() {
|
||
|
|
}
|
||
|
|
}
|