refactor: Apply rector Nextcloud 26 set
Signed-off-by: provokateurin <kate@provokateurin.de>pull/55360/head
parent
6a12fbc4f3
commit
d59338b377
@ -0,0 +1,19 @@
|
||||
<?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() {
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue